┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings/startup
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2010-11-05 17:32:46 +0000
committerPeter Penz <[email protected]>2010-11-05 17:32:46 +0000
commite3bd93fe73f41730555e8c225ee51f93e29c228c (patch)
tree066038e28b143c77de981c3e293bd836830fb602 /src/settings/startup
parentd83a4ce51dc3d5c5b6a61059c1ebe0c0b20f722e (diff)
Take care to listen for changes of the settings-widgets after loadSettings() is invoked, otherwise it is possible that a change is accidently indicated.
svn path=/trunk/KDE/kdebase/apps/; revision=1193350
Diffstat (limited to 'src/settings/startup')
-rw-r--r--src/settings/startup/startupsettingspage.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/settings/startup/startupsettingspage.cpp b/src/settings/startup/startupsettingspage.cpp
index 907b3f2cd..4dd7d19f5 100644
--- a/src/settings/startup/startupsettingspage.cpp
+++ b/src/settings/startup/startupsettingspage.cpp
@@ -98,8 +98,7 @@ StartupSettingsPage::StartupSettingsPage(const KUrl& url, QWidget* parent) :
loadSettings();
- // Connecting the signals must be done after loading the settings
- connect(m_homeUrl, SIGNAL(textChanged(const QString&)), this, SIGNAL(changed()));
+ connect(m_homeUrl, SIGNAL(textChanged(const QString&)), this, SLOT(slotSettingsChanged()));
connect(m_splitView, SIGNAL(toggled(bool)), this, SLOT(slotSettingsChanged()));
connect(m_editableUrl, SIGNAL(toggled(bool)), this, SLOT(slotSettingsChanged()));
connect(m_showFullPath, SIGNAL(toggled(bool)), this, SLOT(slotSettingsChanged()));