diff options
Diffstat (limited to 'kbabel/kbabeldict/kbabeldict.cpp')
-rw-r--r-- | kbabel/kbabeldict/kbabeldict.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kbabel/kbabeldict/kbabeldict.cpp b/kbabel/kbabeldict/kbabeldict.cpp index ebb68227..cae04d07 100644 --- a/kbabel/kbabeldict/kbabeldict.cpp +++ b/kbabel/kbabeldict/kbabeldict.cpp @@ -47,13 +47,13 @@ KBabelDict::KBabelDict() , i18n("About"), i18n("About Module") , i18n("Hide Sett&ings")) { - connect(this, SIGNAL(closeClicked()),this,SLOT(saveConfig())); - connect(this, SIGNAL(closeClicked()),this,SLOT(quit())); + connect(this, TQT_SIGNAL(closeClicked()),this,TQT_SLOT(saveConfig())); + connect(this, TQT_SIGNAL(closeClicked()),this,TQT_SLOT(quit())); view = new KBabelDictView(this); - connect(this, SIGNAL(user1Clicked()), view, SLOT(about())); - connect(this, SIGNAL(user2Clicked()), view, SLOT(aboutModule())); - connect(this, SIGNAL(user3Clicked()), this, SLOT(togglePref())); + connect(this, TQT_SIGNAL(user1Clicked()), view, TQT_SLOT(about())); + connect(this, TQT_SIGNAL(user2Clicked()), view, TQT_SLOT(aboutModule())); + connect(this, TQT_SIGNAL(user3Clicked()), this, TQT_SLOT(togglePref())); // HACK: hide default button, otherwise it would be Help button showButtonOK(false); |