summaryrefslogtreecommitdiffstats
path: root/kpackage/search.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpackage/search.cpp')
-rw-r--r--kpackage/search.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kpackage/search.cpp b/kpackage/search.cpp
index 2dc8979..3782257 100644
--- a/kpackage/search.cpp
+++ b/kpackage/search.cpp
@@ -43,7 +43,7 @@ Search::Search(TQWidget *parent, const char * name)
{
TQFrame *page = makeMainWidget();
- setFocusPolicy(TQ_StrongFocus);
+ setFocusPolicy(TQWidget::StrongFocus);
TQVBoxLayout* vtop = new TQVBoxLayout( page, 10, 10, "vtop");
@@ -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();
}