summaryrefslogtreecommitdiff
path: root/client/widgets/combobox.h
diff options
context:
space:
mode:
authorsenator <senator>2007-10-02 10:08:09 +0000
committersenator <senator>2007-10-02 10:08:09 +0000
commit9910c8962ab813ab7d9a04609b689e1d9ae038e0 (patch)
tree5ca422f7c3e4cfffed3f57d6201f75ed10986578 /client/widgets/combobox.h
parent4cbb885daf4ce4a4fb9827c5d6b67e9f82f730d3 (diff)
selectable entries now uses xml items correctly
Diffstat (limited to 'client/widgets/combobox.h')
-rw-r--r--client/widgets/combobox.h11
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__*/