diff options
Diffstat (limited to 'clients/tde/src/dialogs')
-rw-r--r-- | clients/tde/src/dialogs/selectserverdlg.cpp | 4 | ||||
-rw-r--r-- | clients/tde/src/dialogs/selectserverdlg.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/clients/tde/src/dialogs/selectserverdlg.cpp b/clients/tde/src/dialogs/selectserverdlg.cpp index 86fea06..745a933 100644 --- a/clients/tde/src/dialogs/selectserverdlg.cpp +++ b/clients/tde/src/dialogs/selectserverdlg.cpp @@ -36,7 +36,7 @@ #include "selectserverdlg.h" #include "selectserverdlgbase.h" -class Q_EXPORT StationTypeListViewItem : public TQListViewItem +class TQ_EXPORT StationTypeListViewItem : public TQListViewItem { public: StationTypeListViewItem(TQListView * parent) : TQListViewItem(parent) {} @@ -69,7 +69,7 @@ SelectServerDialog::SelectServerDialog(TQWidget* parent, const char* name, Stati m_base->serverList->setAllColumnsShowFocus(true); m_base->serverList->setFullWidth(true); - connect(m_base->serverList, TQT_SIGNAL(executed(TQListViewItem*)), this, TQT_SLOT(slotOk())); + connect(m_base->serverList, TQ_SIGNAL(executed(TQListViewItem*)), this, TQ_SLOT(slotOk())); for (i=0; i<m_stationList.count(); i++) { StationType st = m_stationList[i]; diff --git a/clients/tde/src/dialogs/selectserverdlg.h b/clients/tde/src/dialogs/selectserverdlg.h index 740f76b..8efdbf5 100644 --- a/clients/tde/src/dialogs/selectserverdlg.h +++ b/clients/tde/src/dialogs/selectserverdlg.h @@ -30,7 +30,7 @@ class SelectServerDlg; class SelectServerDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: SelectServerDialog(TQWidget* parent = 0, const char* name = 0, StationList sl = StationList()); @@ -44,4 +44,4 @@ public: StationType m_selectedStation; }; -#endif
\ No newline at end of file +#endif |