summaryrefslogtreecommitdiffstats
path: root/lanbrowsing/kcmlisa/portsettingsbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lanbrowsing/kcmlisa/portsettingsbar.cpp')
-rw-r--r--lanbrowsing/kcmlisa/portsettingsbar.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lanbrowsing/kcmlisa/portsettingsbar.cpp b/lanbrowsing/kcmlisa/portsettingsbar.cpp
index 540ea894..3e94c730 100644
--- a/lanbrowsing/kcmlisa/portsettingsbar.cpp
+++ b/lanbrowsing/kcmlisa/portsettingsbar.cpp
@@ -21,20 +21,20 @@
#include "portsettingsbar.h"
#include <klocale.h>
-#include <qlabel.h>
+#include <tqlabel.h>
-PortSettingsBar::PortSettingsBar(const QString& title, QWidget *parent)
-:QHBox(parent)
+PortSettingsBar::PortSettingsBar(const TQString& title, TQWidget *parent)
+:TQHBox(parent)
{
- QLabel* label=new QLabel(title, this);
- m_box=new QComboBox(this);
+ TQLabel* label=new TQLabel(title, this);
+ m_box=new TQComboBox(this);
label->setBuddy(m_box);
m_box->insertItem(i18n("Check Availability"));
m_box->insertItem(i18n("Always"));
m_box->insertItem(i18n("Never"));
- connect(m_box,SIGNAL(activated(int)),this,SIGNAL(changed()));
+ connect(m_box,TQT_SIGNAL(activated(int)),this,TQT_SIGNAL(changed()));
}
int PortSettingsBar::selected() const