summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/datawidgetui.h
authorcniehaus <cniehaus>2002-09-19 10:29:38 (UTC)
committer cniehaus <cniehaus>2002-09-19 10:29:38 (UTC)
commit7bf6b71e9d7eadc9311af6a839b3425297346c2c (patch) (unidiff)
tree2b9a08cfec6ace06c6c4321cfb4c6f654b809287 /noncore/apps/oxygen/datawidgetui.h
parentacf131576d76536872a6999274db19a20cb76a4d (diff)
downloadopie-7bf6b71e9d7eadc9311af6a839b3425297346c2c.zip
opie-7bf6b71e9d7eadc9311af6a839b3425297346c2c.tar.gz
opie-7bf6b71e9d7eadc9311af6a839b3425297346c2c.tar.bz2
* nothing is hardcoded anylonger (thanks Max for the .conf-hint)
* removing obsolete includes * making the PSE-data-widget a QWidget instead of a QDialog * removing one obsolete slot * making oxyDW private
Diffstat (limited to 'noncore/apps/oxygen/datawidgetui.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/datawidgetui.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/noncore/apps/oxygen/datawidgetui.h b/noncore/apps/oxygen/datawidgetui.h
index 20622db..5399c81 100644
--- a/noncore/apps/oxygen/datawidgetui.h
+++ b/noncore/apps/oxygen/datawidgetui.h
@@ -8,22 +8,18 @@
8 * * 8 * *
9 **************************************************************************/ 9 **************************************************************************/
10#include "dataTable.h" 10#include "dataTable.h"
11#include <qdialog.h>
12 11
13class QComboBox; 12class QComboBox;
14 13
15class dataWidgetUI : public QDialog 14class dataWidgetUI : public QWidget
16{ 15{
17 Q_OBJECT 16 Q_OBJECT
18 17
19 public: 18 public:
20 dataWidgetUI(); 19 dataWidgetUI();
21 OxydataWidget *oxyDW;
22 20
23 private: 21 private:
24 OxydataTable *DataTable; 22 OxydataTable *DataTable;
25 QComboBox *dataCombo; 23 QComboBox *dataCombo;
26 24 OxydataWidget *oxyDW;
27 private slots:
28 void slotShowData(int);
29}; 25};