summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/datawidgetui.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/oxygen/datawidgetui.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/oxygen/datawidgetui.cpp16
1 files changed, 5 insertions, 11 deletions
diff --git a/noncore/apps/oxygen/datawidgetui.cpp b/noncore/apps/oxygen/datawidgetui.cpp
index fa3f40d..8188515 100644
--- a/noncore/apps/oxygen/datawidgetui.cpp
+++ b/noncore/apps/oxygen/datawidgetui.cpp
@@ -8,3 +8,3 @@
**************************************************************************/
-#include "oxygen.h"
+
#include "datawidgetui.h"
@@ -15,3 +15,2 @@
#include <qlayout.h>
-#include <qtable.h>
#include <qhbox.h>
@@ -19,3 +18,3 @@
-dataWidgetUI::dataWidgetUI() : QDialog()
+dataWidgetUI::dataWidgetUI() : QWidget()
{
@@ -32,3 +31,3 @@ dataWidgetUI::dataWidgetUI() : QDialog()
connect ( dataCombo, SIGNAL( activated(int) ), oxyDW, SLOT( setElement(int) ) );
- Config test( "/home/opie/Settings/oxygendata", Config::File );
+ Config configobj( "oxygendata" );
@@ -37,4 +36,4 @@ dataWidgetUI::dataWidgetUI() : QDialog()
{
- test.setGroup( QString::number( i ) );
- QString foo = test.readEntry( "Name" );
+ configobj.setGroup( QString::number( i ) );
+ QString foo = configobj.readEntry( "Name" );
dataCombo->insertItem( foo );
@@ -43,6 +42 @@ dataWidgetUI::dataWidgetUI() : QDialog()
-
-
-void dataWidgetUI::slotShowData(int number){
- oxyDW->setElement( 6 );
-}