summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kcomboboxtest.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeui/tests/kcomboboxtest.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/tests/kcomboboxtest.h')
-rw-r--r--kdeui/tests/kcomboboxtest.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdeui/tests/kcomboboxtest.h b/kdeui/tests/kcomboboxtest.h
index 8c2a463b6..3321b7f43 100644
--- a/kdeui/tests/kcomboboxtest.h
+++ b/kdeui/tests/kcomboboxtest.h
@@ -1,7 +1,7 @@
#ifndef _KCOMBOBOXTEST_H
#define _KCOMBOBOXTEST_H
-#include <qwidget.h>
+#include <tqwidget.h>
class QTimer;
class QComboBox;
@@ -14,7 +14,7 @@ class KComboBoxTest : public QWidget
Q_OBJECT
public:
- KComboBoxTest ( QWidget *parent=0, const char *name=0 );
+ KComboBoxTest ( TQWidget *parent=0, const char *name=0 );
~KComboBoxTest();
private slots:
@@ -22,12 +22,12 @@ private slots:
void slotTimeout();
void slotDisable();
void slotReturnPressed();
- void slotReturnPressed(const QString&);
+ void slotReturnPressed(const TQString&);
void slotActivated( int );
- void slotActivated( const QString& );
+ void slotActivated( const TQString& );
protected:
- QComboBox* m_qc;
+ TQComboBox* m_qc;
KComboBox* m_ro;
KComboBox* m_rw;
@@ -35,10 +35,10 @@ protected:
KComboBox* m_konqc;
- QPushButton* m_btnExit;
- QPushButton* m_btnEnable;
+ TQPushButton* m_btnExit;
+ TQPushButton* m_btnEnable;
- QTimer* m_timer;
+ TQTimer* m_timer;
};
#endif