summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/datawidgetui.cpp
Unidiff
Diffstat (limited to 'noncore/apps/oxygen/datawidgetui.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/datawidgetui.cpp2
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
@@ -31,25 +31,25 @@ dataWidgetUI::dataWidgetUI() : QWidget()
31 names = newQStringList(); 31 names = newQStringList();
32 loadNames(); 32 loadNames();
33 33
34 this->setCaption( tr( "Chemical Data" )); 34 this->setCaption( tr( "Chemical Data" ));
35 QGridLayout *qgrid = new QGridLayout( this, 2,1 ); 35 QGridLayout *qgrid = new QGridLayout( this, 2,1 );
36 36
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();
50 50
51 qgrid->addWidget( dataCombo, 0,0); 51 qgrid->addWidget( dataCombo, 0,0);
52 qgrid->addWidget( oxyDW , 1,0 ); 52 qgrid->addWidget( oxyDW , 1,0 );
53} 53}
54 54
55void dataWidgetUI::loadNames() 55void dataWidgetUI::loadNames()