diff options
author | Michele Calgaro <[email protected]> | 2023-12-27 19:25:43 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-27 19:25:43 +0900 |
commit | fb401a891f1b426e9419c0cb16403df407138611 (patch) | |
tree | 045b51949b3140039e37d898d8b0513016a86bea /tools/qconfig/main.cpp | |
parent | a9d178f1000475ba1727ffe123a2c54585488c01 (diff) | |
download | tqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip |
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tools/qconfig/main.cpp')
-rw-r--r-- | tools/qconfig/main.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/tools/qconfig/main.cpp b/tools/qconfig/main.cpp index 57a9e5868..a34e2a667 100644 --- a/tools/qconfig/main.cpp +++ b/tools/qconfig/main.cpp @@ -279,42 +279,42 @@ Main::Main() info->setFrameStyle(TQFrame::WinPanel|TQFrame::Sunken); info->setAlignment(AlignTop); - connect(info, SIGNAL(idClicked(const TQString&)), - this, SLOT(selectId(const TQString&))); + connect(info, TQ_SIGNAL(idClicked(const TQString&)), + this, TQ_SLOT(selectId(const TQString&))); #ifdef FIXED_LAYOUT horizontal->setStretchFactor(info,2); #endif - connect(lv, SIGNAL(pressed(TQListViewItem*)), - this, SLOT(updateAvailability(TQListViewItem*))); - connect(lv, SIGNAL(selectionChanged(TQListViewItem*)), - this, SLOT(showInfo(TQListViewItem*))); + connect(lv, TQ_SIGNAL(pressed(TQListViewItem*)), + this, TQ_SLOT(updateAvailability(TQListViewItem*))); + connect(lv, TQ_SIGNAL(selectionChanged(TQListViewItem*)), + this, TQ_SLOT(showInfo(TQListViewItem*))); setCentralWidget(horizontal); TQToolBar* tb = new TQToolBar( this, "browser controls" ); tb->setLabel( "Browser Controls" ); (void)new TQToolButton( TQPixmap(back_xpm), "Back", TQString::null, - info, SLOT(back()), tb, "back" ); + info, TQ_SLOT(back()), tb, "back" ); (void)new TQToolButton( TQPixmap(forward_xpm), "Forward", TQString::null, - info, SLOT(forward()), tb, "forward" ); + info, TQ_SLOT(forward()), tb, "forward" ); TQPopupMenu* file = new TQPopupMenu( menuBar() ); - file->insertItem( "&Open", this, SLOT(open()), CTRL+Key_O ); - file->insertItem( "&Save", this, SLOT(save()), CTRL+Key_S ); + file->insertItem( "&Open", this, TQ_SLOT(open()), CTRL+Key_O ); + file->insertItem( "&Save", this, TQ_SLOT(save()), CTRL+Key_S ); file->insertSeparator(); - file->insertItem( "&Test all", this, SLOT(testAll()), CTRL+Key_T ); + file->insertItem( "&Test all", this, TQ_SLOT(testAll()), CTRL+Key_T ); file->insertSeparator(); - file->insertItem( "E&xit", tqApp, SLOT(quit()), CTRL+Key_Q ); + file->insertItem( "E&xit", tqApp, TQ_SLOT(quit()), CTRL+Key_Q ); menuBar()->insertItem( "&File",file ); menuBar()->insertSeparator(); TQPopupMenu *help = new TQPopupMenu( menuBar() ); - help->insertItem( "&About", this, SLOT(about()) ); - help->insertItem( "About &TQt", this, SLOT(aboutTQt()) ); + help->insertItem( "&About", this, TQ_SLOT(about()) ); + help->insertItem( "About &TQt", this, TQ_SLOT(aboutTQt()) ); menuBar()->insertItem( "&Help", help ); |