From kde-commits Thu Sep 18 08:13:29 2003 From: George Staikos Date: Thu, 18 Sep 2003 08:13:29 +0000 To: kde-commits Subject: kdebase/kcontrol/style X-MARC-Message: https://marc.info/?l=kde-commits&m=106387284319006 CVS commit by staikos: ok so I end up having to fix the bug M +5 -3 kcmstyle.cpp 1.61 --- kdebase/kcontrol/style/kcmstyle.cpp #1.60:1.61 @@ -334,4 +334,7 @@ KCMStyle::KCMStyle( QWidget* parent, con page3Layout->addItem( sp3 ); + // Load settings + load(); + // Do all the setDirty connections. connect(cbStyle, SIGNAL(activated(int)), this, SLOT(setStyleDirty())); @@ -356,7 +359,4 @@ KCMStyle::KCMStyle( QWidget* parent, con addWhatsThis(); - // Load settings - load(); - // Insert the pages into the tabWidget tabWidget->insertTab( page1, i18n("&Style")); @@ -387,4 +387,6 @@ void KCMStyle::load() m_bStyleDirty= false; m_bToolbarsDirty = false; + + setChanged( false ); }