diff options
Diffstat (limited to 'lib/widgets/propeditor/qeditlistbox.h')
-rw-r--r-- | lib/widgets/propeditor/qeditlistbox.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/widgets/propeditor/qeditlistbox.h b/lib/widgets/propeditor/qeditlistbox.h index 7a4a34a2..78a61bfc 100644 --- a/lib/widgets/propeditor/qeditlistbox.h +++ b/lib/widgets/propeditor/qeditlistbox.h @@ -17,8 +17,8 @@ Boston, MA 02110-1301, USA. */ -#ifndef QEDITLISTBOX_H -#define QEDITLISTBOX_H +#ifndef TQEDITLISTBOX_H +#define TQEDITLISTBOX_H #include <tqgroupbox.h> #include <tqlistbox.h> @@ -42,11 +42,12 @@ class TQPushButton; class QEditListBoxPrivate; -class QEditListBox : public QGroupBox +class QEditListBox : public TQGroupBox { Q_OBJECT + TQ_OBJECT - Q_PROPERTY( TQStringList items READ items WRITE setItems ) + TQ_PROPERTY( TQStringList items READ items WRITE setItems ) public: // @since 3.1 @@ -100,7 +101,7 @@ public: * it will be checked if you press the Add-button. It is not * possible to enter items twice into the listbox. */ - QEditListBox(TQWidget *parent = 0, const char *name = 0, + QEditListBox(TQWidget *tqparent = 0, const char *name = 0, bool checkAtEntering=false, int buttons = All ); /** * Create an editable listbox. @@ -108,7 +109,7 @@ public: * The same as the other constructor, additionally it takes * @p title, which will be the title of the frame around the listbox. */ - QEditListBox(const TQString& title, TQWidget *parent = 0, + QEditListBox(const TQString& title, TQWidget *tqparent = 0, const char *name = 0, bool checkAtEntering=false, int buttons = All ); @@ -126,7 +127,7 @@ public: */ QEditListBox( const TQString& title, const CustomEditor &customEditor, - TQWidget *parent = 0, const char *name = 0, + TQWidget *tqparent = 0, const char *name = 0, bool checkAtEntering = false, int buttons = All ); virtual ~QEditListBox(); |