diff options
author | Michele Calgaro <[email protected]> | 2024-08-12 22:02:11 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-08-12 22:02:11 +0900 |
commit | 42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch) | |
tree | 0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/man/man3/tqobject.3qt | |
parent | fef846914f8db6dc117e206ef913d519bf6bb33e (diff) | |
download | tqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.tar.gz tqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.zip |
Rename more widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqobject.3qt')
-rw-r--r-- | doc/man/man3/tqobject.3qt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt index 81f079cf3..8a640eb63 100644 --- a/doc/man/man3/tqobject.3qt +++ b/doc/man/man3/tqobject.3qt @@ -603,7 +603,7 @@ Example: .br t->inherits( "TQObject" ); // returns TRUE .br - t->inherits( "QButton" ); // returns FALSE + t->inherits( "TQButton" ); // returns FALSE .br .br // TQScrollBar inherits TQWidget and QRangeControl @@ -692,7 +692,7 @@ And here's how to install it on two widgets: .br TQPushButton *pushButton = new TQPushButton( this ); .br - QListView *listView = new QListView( this ); + TQListView *listView = new TQListView( this ); .br .br pushButton->installEventFilter( keyPressEater ); @@ -789,7 +789,7 @@ This somewhat contrived example disables all the buttons in this window: .PP .nf .br - TQObjectList *l = topLevelWidget()->queryList( "QButton" ); + TQObjectList *l = topLevelWidget()->queryList( "TQButton" ); .br TQObjectListIt it( *l ); // iterate over the buttons .br @@ -802,7 +802,7 @@ This somewhat contrived example disables all the buttons in this window: .br ++it; .br - ((QButton*)obj)->setEnabled( FALSE ); + ((TQButton*)obj)->setEnabled( FALSE ); .br } .br @@ -966,7 +966,7 @@ Returns 0 if there is no such child. .PP .nf .br - QListBox *c = (QListBox *) tqt_find_obj_child( myWidget, "QListBox", + TQListBox *c = (TQListBox *) tqt_find_obj_child( myWidget, "TQListBox", .br "my list box" ); .br |