summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/dataTable.cpp
authorcniehaus <cniehaus>2002-12-27 11:12:37 (UTC)
committer cniehaus <cniehaus>2002-12-27 11:12:37 (UTC)
commit5e10bb67a740fdbe5744cd2a780a833fafd5c0e5 (patch) (unidiff)
tree4d70f5a524fbe136c67585ac7b8550962af35503 /noncore/apps/oxygen/dataTable.cpp
parent6ca8a429b121dbbdbbfbde453cd2cd1412315aa8 (diff)
downloadopie-5e10bb67a740fdbe5744cd2a780a833fafd5c0e5.zip
opie-5e10bb67a740fdbe5744cd2a780a833fafd5c0e5.tar.gz
opie-5e10bb67a740fdbe5744cd2a780a833fafd5c0e5.tar.bz2
go mickeyl go
Diffstat (limited to 'noncore/apps/oxygen/dataTable.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/oxygen/dataTable.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/noncore/apps/oxygen/dataTable.cpp b/noncore/apps/oxygen/dataTable.cpp
index 661eb5a..951788b 100644
--- a/noncore/apps/oxygen/dataTable.cpp
+++ b/noncore/apps/oxygen/dataTable.cpp
@@ -27,8 +27,11 @@
27 27
28#include <qstringlist.h> 28#include <qstringlist.h>
29 29
30OxydataWidget::OxydataWidget(QWidget *parent, const char *name, QStringList *list ) : QWidget( parent,name ) 30OxydataWidget::OxydataWidget(QWidget *parent, const char *name, const QStringList &list ) : QWidget( parent,name )
31{ 31{
32 names = list;
33 QStringList::ConstIterator it = names.at(10);
34 qDebug( *it );
32 QGridLayout *qgrid = new QGridLayout( this, 2,1 ); 35 QGridLayout *qgrid = new QGridLayout( this, 2,1 );
33 36
34 QHBox *hbox = new QHBox( this ); 37 QHBox *hbox = new QHBox( this );
@@ -53,12 +56,14 @@ OxydataWidget::OxydataWidget(QWidget *parent, const char *name, QStringList *lis
53 56
54void OxydataWidget::setElement( int el ) 57void OxydataWidget::setElement( int el )
55{ 58{
59 QStringList::ConstIterator it = names.at(el+1);
60 qDebug( *it );
56 Config configobj( QPEApplication::qpeDir() +"share/oxygen/oxygendata", Config::File ); 61 Config configobj( QPEApplication::qpeDir() +"share/oxygen/oxygendata", Config::File );
57 62
58 configobj.setGroup( QString::number( el+1 )); 63 configobj.setGroup( QString::number( el+1 ));
59 64
60 left->setText( configobj.readEntry( "Symbol" ) ); 65 left->setText( configobj.readEntry( "Symbol" ) );
61 middle->setText( configobj.readEntry( "Name" ) ); 66 middle->setText( *it );
62 right->setText( QString::number( el+1 ) ); 67 right->setText( QString::number( el+1 ) );
63 68
64 69