summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/dataTable.cpp8
-rw-r--r--noncore/apps/oxygen/datawidgetui.cpp3
2 files changed, 4 insertions, 7 deletions
diff --git a/noncore/apps/oxygen/dataTable.cpp b/noncore/apps/oxygen/dataTable.cpp
index 951788b..46eaeba 100644
--- a/noncore/apps/oxygen/dataTable.cpp
+++ b/noncore/apps/oxygen/dataTable.cpp
@@ -29,7 +29,4 @@
29 29
30OxydataWidget::OxydataWidget(QWidget *parent, const char *name, const QStringList &list ) : QWidget( parent,name ) 30OxydataWidget::OxydataWidget(QWidget *parent, const char *name, const QStringList &list ) : QWidget( parent,name ), names( list )
31{ 31{
32 names = list;
33 QStringList::ConstIterator it = names.at(10);
34 qDebug( *it );
35 QGridLayout *qgrid = new QGridLayout( this, 2,1 ); 32 QGridLayout *qgrid = new QGridLayout( this, 2,1 );
@@ -58,4 +55,3 @@ void OxydataWidget::setElement( int el )
58{ 55{
59 QStringList::ConstIterator it = names.at(el+1); 56 QStringList::ConstIterator it = names.at(el);
60 qDebug( *it );
61 Config configobj( QPEApplication::qpeDir() +"share/oxygen/oxygendata", Config::File ); 57 Config configobj( QPEApplication::qpeDir() +"share/oxygen/oxygendata", Config::File );
diff --git a/noncore/apps/oxygen/datawidgetui.cpp b/noncore/apps/oxygen/datawidgetui.cpp
index e28ee4d..91d669f 100644
--- a/noncore/apps/oxygen/datawidgetui.cpp
+++ b/noncore/apps/oxygen/datawidgetui.cpp
@@ -45,3 +45,3 @@ dataWidgetUI::dataWidgetUI() : QWidget()
45 } 45 }
46 46 QStringList::ConstIterator it = names.begin();
47 OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names); 47 OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names);
@@ -57,2 +57,3 @@ void dataWidgetUI::loadNames()
57{ 57{
58 names.clear();
58 names.append( tr("Hydrogen") ); 59 names.append( tr("Hydrogen") );