From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kalarm/lib/combobox.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'kalarm/lib/combobox.h') diff --git a/kalarm/lib/combobox.h b/kalarm/lib/combobox.h index d33ac147e..3f33a63db 100644 --- a/kalarm/lib/combobox.h +++ b/kalarm/lib/combobox.h @@ -21,13 +21,13 @@ #ifndef COMBOBOX_H #define COMBOBOX_H -#include +#include /** - * @short A QComboBox with read-only option. + * @short A TQComboBox with read-only option. * - * The ComboBox class is a QComboBox with a read-only option. + * The ComboBox class is a TQComboBox with a read-only option. * * The widget may be set as read-only. This has the same effect as disabling it, except * that its appearance is unchanged. @@ -42,13 +42,13 @@ class ComboBox : public QComboBox * @param parent The parent object of this widget. * @param name The name of this widget. */ - explicit ComboBox(QWidget* parent = 0, const char* name = 0); + explicit ComboBox(TQWidget* parent = 0, const char* name = 0); /** Constructor. * @param rw True for a read-write combo box, false for a read-only combo box. * @param parent The parent object of this widget. * @param name The name of this widget. */ - explicit ComboBox(bool rw, QWidget* parent = 0, const char* name = 0); + explicit ComboBox(bool rw, TQWidget* parent = 0, const char* name = 0); /** Returns true if the widget is read only. */ bool isReadOnly() const { return mReadOnly; } /** Sets whether the combo box is read-only for the user. If read-only, @@ -57,11 +57,11 @@ class ComboBox : public QComboBox */ virtual void setReadOnly(bool readOnly); protected: - virtual void mousePressEvent(QMouseEvent*); - virtual void mouseReleaseEvent(QMouseEvent*); - virtual void mouseMoveEvent(QMouseEvent*); - virtual void keyPressEvent(QKeyEvent*); - virtual void keyReleaseEvent(QKeyEvent*); + virtual void mousePressEvent(TQMouseEvent*); + virtual void mouseReleaseEvent(TQMouseEvent*); + virtual void mouseMoveEvent(TQMouseEvent*); + virtual void keyPressEvent(TQKeyEvent*); + virtual void keyReleaseEvent(TQKeyEvent*); private: bool mReadOnly; // value cannot be changed }; -- cgit v1.2.1