summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/doctab/doctab.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/noncore/settings/doctab/doctab.cpp b/noncore/settings/doctab/doctab.cpp
index 72eda6b..1cf3e2d 100644
--- a/noncore/settings/doctab/doctab.cpp
+++ b/noncore/settings/doctab/doctab.cpp
@@ -46,24 +46,31 @@
46#if QT_VERSION >= 0x030000 46#if QT_VERSION >= 0x030000
47#include <qstylefactory.h> 47#include <qstylefactory.h>
48#endif 48#endif
49 49
50#include <stdlib.h> 50#include <stdlib.h>
51 51
52 52
53DocTabSettings::DocTabSettings( QWidget* parent, const char* name, WFlags fl ) 53DocTabSettings::DocTabSettings( QWidget* parent, const char* name, WFlags fl )
54 : DocTabSettingsBase( parent, name, TRUE, fl ) 54 : DocTabSettingsBase( parent, name, TRUE, fl )
55{ 55{
56 dl = new QPEDialogListener(this); 56 dl = new QPEDialogListener(this);
57 reset(); 57 reset();
58
59 Config cfg( "Launcher" );
60 cfg.setGroup( "DocTab" );
61 if(cfg.readBoolEntry( "Enable", true ))
62 yes->setChecked(true);
63 else
64 no->setChecked(true);
58} 65}
59 66
60DocTabSettings::~DocTabSettings() 67DocTabSettings::~DocTabSettings()
61{} 68{}
62 69
63void DocTabSettings::accept() 70void DocTabSettings::accept()
64{ 71{
65 applyDocTab(); 72 applyDocTab();
66 QDialog::accept(); 73 QDialog::accept();
67} 74}
68 75
69void DocTabSettings::applyDocTab() 76void DocTabSettings::applyDocTab()