From 497a1cbad9b685ba7e08720d4337589dc6b9fbd2 Mon Sep 17 00:00:00 2001 From: cniehaus Date: Fri, 27 Dec 2002 11:41:02 +0000 Subject: finally found that stupid bug --- (limited to 'noncore/apps/oxygen') 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 @@ -27,11 +27,8 @@ #include -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 ); QHBox *hbox = new QHBox( this ); @@ -56,8 +53,7 @@ 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 ); configobj.setGroup( QString::number( el+1 )); 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 @@ -43,7 +43,7 @@ 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) ) ); oxyDW->setElement( 0 ); @@ -55,6 +55,7 @@ dataWidgetUI::dataWidgetUI() : QWidget() void dataWidgetUI::loadNames() { + names.clear(); names.append( tr("Hydrogen") ); names.append( tr("Helium") ); names.append( tr("Lithium") ); -- cgit v0.9.0.2