summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/alias/editaliasdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/plugins/alias/editaliasdialog.cpp')
-rw-r--r--kopete/plugins/alias/editaliasdialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/plugins/alias/editaliasdialog.cpp b/kopete/plugins/alias/editaliasdialog.cpp
index 42eb2f4b..6acdf153 100644
--- a/kopete/plugins/alias/editaliasdialog.cpp
+++ b/kopete/plugins/alias/editaliasdialog.cpp
@@ -16,20 +16,20 @@
*/
#include "editaliasdialog.h"
-#include <qobject.h>
+#include <tqobject.h>
#include <kpushbutton.h>
-#include <qwidget.h>
-#include <qstring.h>
+#include <tqwidget.h>
+#include <tqstring.h>
#include <klineedit.h>
#include <klistview.h>
-EditAliasDialog::EditAliasDialog( QWidget* parent, const char* name )
+EditAliasDialog::EditAliasDialog( TQWidget* parent, const char* name )
: AliasDialog( parent, name )
{
- QObject::connect( alias, SIGNAL( textChanged( const QString& ) ), this, SLOT( checkButtonsEnabled() ) );
- QObject::connect( command, SIGNAL( textChanged( const QString& ) ), this, SLOT( checkButtonsEnabled() ) );
- QObject::connect( protocolList, SIGNAL( selectionChanged() ), this, SLOT( checkButtonsEnabled() ) );
+ TQObject::connect( alias, TQT_SIGNAL( textChanged( const TQString& ) ), this, TQT_SLOT( checkButtonsEnabled() ) );
+ TQObject::connect( command, TQT_SIGNAL( textChanged( const TQString& ) ), this, TQT_SLOT( checkButtonsEnabled() ) );
+ TQObject::connect( protocolList, TQT_SIGNAL( selectionChanged() ), this, TQT_SLOT( checkButtonsEnabled() ) );
checkButtonsEnabled();
}