summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/dataTable.h
Unidiff
Diffstat (limited to 'noncore/apps/oxygen/dataTable.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/oxygen/dataTable.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/noncore/apps/oxygen/dataTable.h b/noncore/apps/oxygen/dataTable.h
index a8c9b6e..8be78a9 100644
--- a/noncore/apps/oxygen/dataTable.h
+++ b/noncore/apps/oxygen/dataTable.h
@@ -13,13 +13,13 @@
13 13
14#include <qwidget.h> 14#include <qwidget.h>
15#include <qtable.h> 15#include <qtable.h>
16 16
17class QLabel; 17class QLabel;
18class OxydataTable; 18class OxydataTable;
19//class QStringList; 19class QStringList;
20 20
21/* 21/*
22 * A OxydataWidget shows all known data of an element. It can 22 * A OxydataWidget shows all known data of an element. It can
23 * be used for both the PSE and the pure Data-Dialog. It is 23 * be used for both the PSE and the pure Data-Dialog. It is
24 * a simple QHBox with 2 QStrings in it plus a OxydataTable 24 * a simple QHBox with 2 QStrings in it plus a OxydataTable
25 * which contains the rest of the data. 25 * which contains the rest of the data.
@@ -29,16 +29,17 @@ class OxydataTable;
29 29
30class OxydataWidget : public QWidget 30class OxydataWidget : public QWidget
31{ 31{
32 Q_OBJECT 32 Q_OBJECT
33 33
34 public: 34 public:
35 OxydataWidget(QWidget *parent=0, const char *name=0, QStringList *list =0 ); 35 OxydataWidget(QWidget *parent=0, const char *name=0, const QStringList &list =0 );
36 36
37 QLabel *left, *middle, *right; 37 QLabel *left, *middle, *right;
38 void setLayout(); 38 void setLayout();
39 QStringList names;
39 40
40 private: 41 private:
41 void setTable() const; 42 void setTable() const;
42 OxydataTable *DataTable; 43 OxydataTable *DataTable;
43 44
44 public slots: 45 public slots: