author | cniehaus <cniehaus> | 2002-12-26 15:36:25 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-12-26 15:36:25 (UTC) |
commit | d43d455080cd462340401233f9806d04e3cb0751 (patch) (unidiff) | |
tree | 7cbb342f104dd3dd7c6812022dfcf866e395f906 | |
parent | 05f9d02f9b6586280f1075fbb5bbf938bb11a235 (diff) | |
download | opie-d43d455080cd462340401233f9806d04e3cb0751.zip opie-d43d455080cd462340401233f9806d04e3cb0751.tar.gz opie-d43d455080cd462340401233f9806d04e3cb0751.tar.bz2 |
Fixing stupid numerationbug
@@ -40,7 +40,7 @@ dataWidgetUI::dataWidgetUI() : QWidget()
int i = 0;
for ( QStringList::Iterator it = names->begin() ; it != names->end() ; ++it,i++)
{
- dataCombo->insertItem( QString::number( i )+" - "+*it );
+ dataCombo->insertItem( QString::number( i+1 )+" - "+*it );
}
OxydataWidget *oxyDW = new OxydataWidget(this, "OxydataWidget_oxyDW", names);
-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 | |||
@@ -19,49 +19,49 @@ | |||
19 | #include "dataTable.h" | 19 | #include "dataTable.h" |
20 | 20 | ||
21 | #include <qpe/config.h> | 21 | #include <qpe/config.h> |
22 | #include <qstring.h> | 22 | #include <qstring.h> |
23 | #include <qcombobox.h> | 23 | #include <qcombobox.h> |
24 | #include <qlayout.h> | 24 | #include <qlayout.h> |
25 | #include <qhbox.h> | 25 | #include <qhbox.h> |
26 | #include <qlabel.h> | 26 | #include <qlabel.h> |
27 | #include <qpe/qpeapplication.h> | 27 | #include <qpe/qpeapplication.h> |
28 | 28 | ||
29 | dataWidgetUI::dataWidgetUI() : QWidget() | 29 | dataWidgetUI::dataWidgetUI() : QWidget() |
30 | { | 30 | { |
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 | ||
55 | void dataWidgetUI::loadNames() | 55 | void dataWidgetUI::loadNames() |
56 | { | 56 | { |
57 | names->append( tr("Hydrogen") ); | 57 | names->append( tr("Hydrogen") ); |
58 | names->append( tr("Helium") ); | 58 | names->append( tr("Helium") ); |
59 | names->append( tr("Lithium") ); | 59 | names->append( tr("Lithium") ); |
60 | names->append( tr("Beryllium") ); | 60 | names->append( tr("Beryllium") ); |
61 | names->append( tr("Boron") ); | 61 | names->append( tr("Boron") ); |
62 | names->append( tr("Carbon") ); | 62 | names->append( tr("Carbon") ); |
63 | names->append( tr("Nitrogen") ); | 63 | names->append( tr("Nitrogen") ); |
64 | names->append( tr("Oxygen") ); | 64 | names->append( tr("Oxygen") ); |
65 | names->append( tr("Fluorine") ); | 65 | names->append( tr("Fluorine") ); |
66 | names->append( tr("Neon") ); | 66 | names->append( tr("Neon") ); |
67 | names->append( tr("Sodium") ); | 67 | names->append( tr("Sodium") ); |