diff options
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(); } |