diff options
| author | senator <senator> | 2007-10-02 10:08:09 +0000 | 
|---|---|---|
| committer | senator <senator> | 2007-10-02 10:08:09 +0000 | 
| commit | 9910c8962ab813ab7d9a04609b689e1d9ae038e0 (patch) | |
| tree | 5ca422f7c3e4cfffed3f57d6201f75ed10986578 /client/widgets/combobox.h | |
| parent | 4cbb885daf4ce4a4fb9827c5d6b67e9f82f730d3 (diff) | |
selectable entries now uses xml items correctly
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__*/ | 
