-rw-r--r-- | noncore/apps/oxygen/datawidgetui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/oxygen/datawidgetui.cpp b/noncore/apps/oxygen/datawidgetui.cpp index b9000fa..68c025f 100644 --- a/noncore/apps/oxygen/datawidgetui.cpp +++ b/noncore/apps/oxygen/datawidgetui.cpp | |||
@@ -37,13 +37,13 @@ dataWidgetUI::dataWidgetUI() : QWidget() | |||
37 | dataCombo = new QComboBox( this ); | 37 | dataCombo = new QComboBox( this ); |
38 | 38 | ||
39 | //read in all names of the 118 elements | 39 | //read in all names of the 118 elements |
40 | int i = 0; | 40 | int i = 0; |
41 | for ( QStringList::Iterator it = names->begin() ; it != names->end() ; ++it,i++) | 41 | for ( QStringList::Iterator it = names->begin() ; it != names->end() ; ++it,i++) |
42 | { | 42 | { |
43 | dataCombo->insertItem( QString::number( i )+" - "+*it ); | 43 | dataCombo->insertItem( QString::number( i+1 )+" - "+*it ); |
44 | } | 44 | } |
45 | 45 | ||
46 | OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names); | 46 | OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names); |
47 | connect ( dataCombo, SIGNAL( activated(int) ), oxyDW, SLOT( setElement(int) ) ); | 47 | connect ( dataCombo, SIGNAL( activated(int) ), oxyDW, SLOT( setElement(int) ) ); |
48 | oxyDW->setElement( 0 ); | 48 | oxyDW->setElement( 0 ); |
49 | oxyDW->setLayout(); | 49 | oxyDW->setLayout(); |