summaryrefslogtreecommitdiff
authorcniehaus <cniehaus>2002-09-21 19:47:30 (UTC)
committer cniehaus <cniehaus>2002-09-21 19:47:30 (UTC)
commit394658a0a5430ce1195ee0393d174ed7f25835d9 (patch) (unidiff)
tree9030d0af0a6b7f50d2145dc5515b8d64738fef20
parent6cb57ded60dbefea5c81de4e50ec64fe63dee379 (diff)
downloadopie-394658a0a5430ce1195ee0393d174ed7f25835d9.zip
opie-394658a0a5430ce1195ee0393d174ed7f25835d9.tar.gz
opie-394658a0a5430ce1195ee0393d174ed7f25835d9.tar.bz2
damn, a include missing
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/datawidgetui.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/apps/oxygen/datawidgetui.cpp b/noncore/apps/oxygen/datawidgetui.cpp
index 60cefd5..44cc43d 100644
--- a/noncore/apps/oxygen/datawidgetui.cpp
+++ b/noncore/apps/oxygen/datawidgetui.cpp
@@ -15,24 +15,25 @@
15 * * 15 * *
16 **************************************************************************/ 16 **************************************************************************/
17 17
18#include "datawidgetui.h" 18#include "datawidgetui.h"
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 28
28dataWidgetUI::dataWidgetUI() : QWidget() 29dataWidgetUI::dataWidgetUI() : QWidget()
29{ 30{
30 this->setCaption( tr( "Chemical Data" )); 31 this->setCaption( tr( "Chemical Data" ));
31 QGridLayout *qgrid = new QGridLayout( this, 2,1 ); 32 QGridLayout *qgrid = new QGridLayout( this, 2,1 );
32 33
33 dataCombo = new QComboBox( this ); 34 dataCombo = new QComboBox( this );
34 35
35 //read in all names of the 118 elements 36 //read in all names of the 118 elements
36 Config configobj( QPEApplication::qpeDir() +"share/oxygen/oxygendata", Config::File ); 37 Config configobj( QPEApplication::qpeDir() +"share/oxygen/oxygendata", Config::File );
37 for ( int i = 1 ; i < 119 ; i++ ) 38 for ( int i = 1 ; i < 119 ; i++ )
38 { 39 {