diff options
author | Michele Calgaro <[email protected]> | 2024-01-11 10:40:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-11 10:44:36 +0900 |
commit | ed7858de3a395180d6ec0c03d8358610b36938ea (patch) | |
tree | 1b81472d6cc0e957c603add6ab33814330e4afbe /kpackage/search.cpp | |
parent | 41b29e64b5883035aba22b719c3174ed13d3a65a (diff) | |
download | tdeadmin-ed7858de3a395180d6ec0c03d8358610b36938ea.tar.gz tdeadmin-ed7858de3a395180d6ec0c03d8358610b36938ea.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kpackage/search.cpp')
-rw-r--r-- | kpackage/search.cpp | 6 |
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(); } |