summaryrefslogtreecommitdiffstats
path: root/konversation/src/alias_preferences.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/alias_preferences.cpp')
-rw-r--r--konversation/src/alias_preferences.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/konversation/src/alias_preferences.cpp b/konversation/src/alias_preferences.cpp
index e715a07..7ec6f06 100644
--- a/konversation/src/alias_preferences.cpp
+++ b/konversation/src/alias_preferences.cpp
@@ -38,15 +38,15 @@ Alias_Config::Alias_Config(TQWidget* parent, const char* name)
aliasListView->setSorting(-1,false);
aliasListView->header()->setMovingEnabled(false);
- connect(aliasListView, TQT_SIGNAL(selectionChanged(TQListViewItem*)), this, TQT_SLOT(entrySelected(TQListViewItem*)));
- connect(aliasListView, TQT_SIGNAL(clicked(TQListViewItem*)), this, TQT_SLOT(entrySelected(TQListViewItem*)) );
- connect(aliasListView, TQT_SIGNAL(moved()), this, TQT_SIGNAL(modified()));
+ connect(aliasListView, TQ_SIGNAL(selectionChanged(TQListViewItem*)), this, TQ_SLOT(entrySelected(TQListViewItem*)));
+ connect(aliasListView, TQ_SIGNAL(clicked(TQListViewItem*)), this, TQ_SLOT(entrySelected(TQListViewItem*)) );
+ connect(aliasListView, TQ_SIGNAL(moved()), this, TQ_SIGNAL(modified()));
- connect(aliasInput, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(nameChanged(const TQString&)));
- connect(replacementInput, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(actionChanged(const TQString&)));
+ connect(aliasInput, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(nameChanged(const TQString&)));
+ connect(replacementInput, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(actionChanged(const TQString&)));
- connect(newButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(addEntry()));
- connect(removeButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(removeEntry()));
+ connect(newButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(addEntry()));
+ connect(removeButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(removeEntry()));
}
Alias_Config::~Alias_Config()