summaryrefslogtreecommitdiff
path: root/noncore/apps/oxygen/datawidgetui.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/oxygen/datawidgetui.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/oxygen/datawidgetui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/oxygen/datawidgetui.cpp b/noncore/apps/oxygen/datawidgetui.cpp
index 0f8a146..c8492e5 100644
--- a/noncore/apps/oxygen/datawidgetui.cpp
+++ b/noncore/apps/oxygen/datawidgetui.cpp
@@ -7,25 +7,25 @@
* *
**************************************************************************/
#include "oxygen.h"
#include <qpe/config.h>
#include "datawidgetui.h"
-#include <qtable.h>
#include <qstring.h>
#include <qcombobox.h>
#include <qlayout.h>
dataWidgetUI::dataWidgetUI() : QDialog()
{
- this->setCaption("foo");
+ this->setCaption("Chemical Data");
QVBoxLayout *vbox = new QVBoxLayout( this );
dataCombo = new QComboBox( this );
DataTable = new OxydataTable( 7,2, this );
+ DataTable->setShowGrid( false );
vbox->addWidget( dataCombo );
vbox->addWidget( DataTable );
DataTable->show();
dataCombo->show();