summaryrefslogtreecommitdiffstats
path: root/kpackage/search.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:40:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-12 18:41:24 +0900
commit7ad2f154f24ac01a33118779950bcdfe0d16ca94 (patch)
treeb9925df5e2fc01026c3ef866224704086ab32da5 /kpackage/search.cpp
parent6360698f4f1660c36e1874dc496fb057f28e7b86 (diff)
downloadtdeadmin-7ad2f154f24ac01a33118779950bcdfe0d16ca94.tar.gz
tdeadmin-7ad2f154f24ac01a33118779950bcdfe0d16ca94.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit ed7858de3a395180d6ec0c03d8358610b36938ea)
Diffstat (limited to 'kpackage/search.cpp')
-rw-r--r--kpackage/search.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kpackage/search.cpp b/kpackage/search.cpp
index 1ea4c5f..3782257 100644
--- a/kpackage/search.cpp
+++ b/kpackage/search.cpp
@@ -56,7 +56,7 @@ Search::Search(TQWidget *parent, const char * name)
value->setFocus();
value->setFixedHeight(value->sizeHint().height());
value->setMinimumWidth(250);
- connect(value, TQT_SIGNAL(textChanged(const TQString &)),this, TQT_SLOT(textChanged(const TQString &)));
+ connect(value, TQ_SIGNAL(textChanged(const TQString &)),this, TQ_SLOT(textChanged(const TQString &)));
TQHBoxLayout* hc = new TQHBoxLayout( );
vf->addLayout(hc,0);
@@ -74,8 +74,8 @@ Search::Search(TQWidget *parent, const char * name)
enableButton( User1, false );
- connect(this, TQT_SIGNAL(user1Clicked()), this, TQT_SLOT(ok_slot()));
- connect(this, TQT_SIGNAL(closeClicked()), this, TQT_SLOT(done_slot()));
+ connect(this, TQ_SIGNAL(user1Clicked()), this, TQ_SLOT(ok_slot()));
+ connect(this, TQ_SIGNAL(closeClicked()), this, TQ_SLOT(done_slot()));
show();
}