From 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Jun 2024 23:07:22 +0900 Subject: Rename ntqwidget* related files to equivalent tqwidget* Signed-off-by: Michele Calgaro --- doc/html/cursor-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/cursor-example.html') diff --git a/doc/html/cursor-example.html b/doc/html/cursor-example.html index 2403c27f3..0d7712e39 100644 --- a/doc/html/cursor-example.html +++ b/doc/html/cursor-example.html @@ -91,7 +91,7 @@ static unsigned char cm_bits[] = { // cursor bitmap mask // The CursorView contains many labels with different cursors. // -class CursorView : public TQWidget // cursor view +class CursorView : public TQWidget // cursor view { public: CursorView(); @@ -136,7 +136,7 @@ CursorView::CursorView() // construct view for ( int y=0; y<4; y++ ) { // create the small labels for ( int x=0; x<4; x++ ) { label = new TQLabel( this ); - label->setCursor( TQCursor( list[i].shape ) ); + label->setCursor( TQCursor( list[i].shape ) ); label->setText( list[i].name ); label->setAlignment( AlignCenter ); label->setMargin( 10 ); @@ -148,7 +148,7 @@ CursorView::CursorView() // construct view label = new TQLabel( this ); - label->setCursor( TQCursor( list[i].shape ) ); + label->setCursor( TQCursor( list[i].shape ) ); label->setText( list[i].name ); label->setAlignment( AlignCenter ); label->setMargin( 10 ); @@ -162,7 +162,7 @@ CursorView::CursorView() // construct view TQCursor custom( cb, cm ); // create bitmap cursor label = new TQLabel( this ); // create the big label - label->setCursor( custom ); + label->setCursor( custom ); label->setText( "Custom bitmap cursor" ); label->setAlignment( AlignCenter ); label->setMargin( 10 ); @@ -181,8 +181,8 @@ int main( int argc, char **argv ) TQApplication a( argc, argv ); // application object CursorView v; // cursor view a.setMainWidget( &v ); - v.setCaption("TQt Example - Cursors"); - v.show(); + v.setCaption("TQt Example - Cursors"); + v.show(); return a.exec(); } -- cgit v1.2.3