summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/wellenreiterbase.cpp
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/gui/wellenreiterbase.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/wellenreiterbase.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/noncore/net/wellenreiter/gui/wellenreiterbase.cpp b/noncore/net/wellenreiter/gui/wellenreiterbase.cpp
index b1845b9..aa94c81 100644
--- a/noncore/net/wellenreiter/gui/wellenreiterbase.cpp
+++ b/noncore/net/wellenreiter/gui/wellenreiterbase.cpp
@@ -27,12 +27,13 @@
27#include <qwhatsthis.h> 27#include <qwhatsthis.h>
28#include <qimage.h> 28#include <qimage.h>
29#include <qpixmap.h> 29#include <qpixmap.h>
30 30
31#include "logwindow.h" 31#include "logwindow.h"
32#include "hexwindow.h" 32#include "hexwindow.h"
33#include "configwindow.h"
33 34
34#include <qpe/resource.h> 35#include <qpe/resource.h>
35 36
36 37
37/* 38/*
38 * Constructs a WellenreiterBase which is a child of 'parent', with the 39 * Constructs a WellenreiterBase which is a child of 'parent', with the
@@ -87,14 +88,14 @@ WellenreiterBase::WellenreiterBase( QWidget* parent, const char* name, WFlags f
87 88
88 hexwindow = new MHexWindow( TabWidget, "Hex" ); 89 hexwindow = new MHexWindow( TabWidget, "Hex" );
89 TabWidget->addTab( hexwindow, "wellenreiter/hex", tr( "Hex" ) ); 90 TabWidget->addTab( hexwindow, "wellenreiter/hex", tr( "Hex" ) );
90 91
91 //--------- CONFIG TAB -------------- 92 //--------- CONFIG TAB --------------
92 93
93 QPushButton* dummy = new QPushButton( "under construction", TabWidget ); 94 configwindow = new WellenreiterConfigWindow( TabWidget, "Config" );
94 TabWidget->addTab( dummy, "wellenreiter/config", tr( "Config" ) ); 95 TabWidget->addTab( configwindow, "wellenreiter/config", tr( "Config" ) );
95 96
96 //--------- ABOUT TAB -------------- 97 //--------- ABOUT TAB --------------
97 98
98 about = new QWidget( TabWidget, "about" ); 99 about = new QWidget( TabWidget, "about" );
99 aboutLayout = new QGridLayout( about ); 100 aboutLayout = new QGridLayout( about );
100 aboutLayout->setSpacing( 6 ); 101 aboutLayout->setSpacing( 6 );