diff options
author | Michele Calgaro <[email protected]> | 2024-01-12 10:51:50 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-16 10:03:43 +0900 |
commit | a4241b7911d2e0b36edfb02f616b8b282050c0ec (patch) | |
tree | 316c9a3298857645d5da57b682fce707c8e2a907 /kfind/kfind.cpp | |
parent | f9d06cee3d2b4ffe415b1d52c9ad5575643a9e34 (diff) | |
download | tdebase-a4241b7911d2e0b36edfb02f616b8b282050c0ec.tar.gz tdebase-a4241b7911d2e0b36edfb02f616b8b282050c0ec.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kfind/kfind.cpp')
-rw-r--r-- | kfind/kfind.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kfind/kfind.cpp b/kfind/kfind.cpp index 1675d9d71..bcf1e3cd8 100644 --- a/kfind/kfind.cpp +++ b/kfind/kfind.cpp @@ -71,17 +71,17 @@ Kfind::Kfind(TQWidget *parent, const char *name) mSearch = new KPushButton( KGuiItem(i18n("&Find"), "edit-find"), mButtonBox ); mButtonBox->setSpacing( (tabWidget->sizeHint().height()-4*mSearch->sizeHint().height()) / 4); - connect( mSearch, TQT_SIGNAL(clicked()), this, TQT_SLOT( startSearch() ) ); + connect( mSearch, TQ_SIGNAL(clicked()), this, TQ_SLOT( startSearch() ) ); mStop = new KPushButton( KGuiItem(i18n("Stop"), "process-stop"), mButtonBox ); - connect( mStop, TQT_SIGNAL(clicked()), this, TQT_SLOT( stopSearch() ) ); + connect( mStop, TQ_SIGNAL(clicked()), this, TQ_SLOT( stopSearch() ) ); mSave = new KPushButton( KStdGuiItem::saveAs(), mButtonBox ); - connect( mSave, TQT_SIGNAL(clicked()), this, TQT_SLOT( saveResults() ) ); + connect( mSave, TQ_SIGNAL(clicked()), this, TQ_SLOT( saveResults() ) ); KPushButton * mClose = new KPushButton( KStdGuiItem::close(), mButtonBox ); - connect( mClose, TQT_SIGNAL(clicked()), this, TQT_SIGNAL( destroyMe() ) ); + connect( mClose, TQ_SIGNAL(clicked()), this, TQ_SIGNAL( destroyMe() ) ); // react to search requests from widget - connect( tabWidget, TQT_SIGNAL(startSearch()), this, TQT_SLOT( startSearch() ) ); + connect( tabWidget, TQ_SIGNAL(startSearch()), this, TQ_SLOT( startSearch() ) ); mSearch->setEnabled(true); // Enable "Search" mStop->setEnabled(false); // Disable "Stop" |