summaryrefslogtreecommitdiffstats
path: root/konversation/src/serverlistdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/serverlistdialog.cpp')
-rw-r--r--konversation/src/serverlistdialog.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/konversation/src/serverlistdialog.cpp b/konversation/src/serverlistdialog.cpp
index 9f1e8b5..a46b56e 100644
--- a/konversation/src/serverlistdialog.cpp
+++ b/konversation/src/serverlistdialog.cpp
@@ -130,7 +130,7 @@ namespace Konversation
TQCheckBox* showAtStartup = new TQCheckBox(i18n("Show at application startup"), mainWidget);
showAtStartup->setChecked(Preferences::showServerList());
- connect(showAtStartup, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(setShowAtStartup(bool)));
+ connect(showAtStartup, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(setShowAtStartup(bool)));
TQGridLayout* layout = new TQGridLayout(mainWidget, 5, 2, 0, spacingHint());
@@ -149,15 +149,15 @@ namespace Konversation
// Load server list
updateServerList();
- connect(m_serverList, TQT_SIGNAL(aboutToMove()), this, TQT_SLOT(slotAboutToMove()));
- connect(m_serverList, TQT_SIGNAL(moved()), this, TQT_SLOT(slotMoved()));
- connect(m_serverList, TQT_SIGNAL(doubleClicked(TQListViewItem *, const TQPoint&, int)), this, TQT_SLOT(slotOk()));
- connect(m_serverList, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(updateButtons()));
- connect(m_serverList, TQT_SIGNAL(expanded(TQListViewItem*)), this, TQT_SLOT(slotSetGroupExpanded(TQListViewItem*)));
- connect(m_serverList, TQT_SIGNAL(collapsed(TQListViewItem*)), this, TQT_SLOT(slotSetGroupCollapsed(TQListViewItem*)));
- connect(m_addButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotAdd()));
- connect(m_editButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotEdit()));
- connect(m_delButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotDelete()));
+ connect(m_serverList, TQ_SIGNAL(aboutToMove()), this, TQ_SLOT(slotAboutToMove()));
+ connect(m_serverList, TQ_SIGNAL(moved()), this, TQ_SLOT(slotMoved()));
+ connect(m_serverList, TQ_SIGNAL(doubleClicked(TQListViewItem *, const TQPoint&, int)), this, TQ_SLOT(slotOk()));
+ connect(m_serverList, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(updateButtons()));
+ connect(m_serverList, TQ_SIGNAL(expanded(TQListViewItem*)), this, TQ_SLOT(slotSetGroupExpanded(TQListViewItem*)));
+ connect(m_serverList, TQ_SIGNAL(collapsed(TQListViewItem*)), this, TQ_SLOT(slotSetGroupCollapsed(TQListViewItem*)));
+ connect(m_addButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAdd()));
+ connect(m_editButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotEdit()));
+ connect(m_delButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotDelete()));
updateButtons();