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) (side-by-side diff)
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 @@
* *
**************************************************************************/
#include "dataTable.h"
-#include <qdialog.h>
class QComboBox;
-class dataWidgetUI : public QDialog
+class dataWidgetUI : public QWidget
{
Q_OBJECT
public:
dataWidgetUI();
- OxydataWidget *oxyDW;
private:
OxydataTable *DataTable;
QComboBox *dataCombo;
-
- private slots:
- void slotShowData(int);
+ OxydataWidget *oxyDW;
};