diff options
Diffstat (limited to 'client/widgets/combobox.h')
-rw-r--r-- | client/widgets/combobox.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/client/widgets/combobox.h b/client/widgets/combobox.h index eb7d72e..f6baa67 100644 --- a/client/widgets/combobox.h +++ b/client/widgets/combobox.h @@ -2,7 +2,7 @@ /*************************************************************************** * combobox.h * - * Wed Jul 18 09:39:40 CEST 2007 + * Wed Jul 18 10:35:52 CEST 2007 * Copyright 2007 Bent Bisballe Nyeng, Lars Bisballe Jensen and Peter Skaarup * deva@aasimon.org, elsenator@gmail.com and piparum@piparum.dk ****************************************************************************/ @@ -28,18 +28,21 @@ #define __PRACRO_COMBOBOX_H__ #include "widget.h" -#include <QComboBox> #include <QDomNode> +#include <QComboBox> class ComboBox : public QComboBox, public Widget { public: - ComboBox(QDomNode node); + ComboBox(QDomNode); public slots: QString getValue(); - + +private: + QString combo_value; + }; #endif/*__PRACRO_COMBOBOX_H__*/ |