-rw-r--r-- | noncore/apps/oxygen/dataTable.cpp | 8 | ||||
-rw-r--r-- | noncore/apps/oxygen/datawidgetui.cpp | 3 |
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 @@ -28,9 +28,6 @@ #include <qstringlist.h> -OxydataWidget::OxydataWidget(QWidget *parent, const char *name, const QStringList &list ) : QWidget( parent,name ) +OxydataWidget::OxydataWidget(QWidget *parent, const char *name, const QStringList &list ) : QWidget( parent,name ), names( list ) { - names = list; - QStringList::ConstIterator it = names.at(10); - qDebug( *it ); QGridLayout *qgrid = new QGridLayout( this, 2,1 ); @@ -57,6 +54,5 @@ OxydataWidget::OxydataWidget(QWidget *parent, const char *name, const QStringLis void OxydataWidget::setElement( int el ) { - QStringList::ConstIterator it = names.at(el+1); - qDebug( *it ); + QStringList::ConstIterator it = names.at(el); 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 @@ -44,5 +44,5 @@ dataWidgetUI::dataWidgetUI() : QWidget() dataCombo->insertItem( QString::number( i+1 )+" - "+*it ); } - + QStringList::ConstIterator it = names.begin(); OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names); connect ( dataCombo, SIGNAL( activated(int) ), oxyDW, SLOT( setElement(int) ) ); @@ -56,4 +56,5 @@ dataWidgetUI::dataWidgetUI() : QWidget() void dataWidgetUI::loadNames() { + names.clear(); names.append( tr("Hydrogen") ); names.append( tr("Helium") ); |