]> cloud.milkyroute.net Git - dolphin.git/commitdiff
I forgot to change these connection statements to both send and receive boolean value...
authorShaun Reich <shaun.reich@kdemail.net>
Mon, 16 Feb 2009 04:40:17 +0000 (04:40 +0000)
committerShaun Reich <shaun.reich@kdemail.net>
Mon, 16 Feb 2009 04:40:17 +0000 (04:40 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=926757

src/settings/viewpropertiesdialog.cpp

index 5e3f261f3a102e9185ece9e34f27f0bb204916d4..438bf74fb321a00299176e86f0f6adc7a0e626de 100644 (file)
@@ -196,14 +196,14 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) :
         topLayout->addWidget(applyBox);
         topLayout->addWidget(m_useAsDefault);
 
-        connect(m_applyToCurrentFolder, SIGNAL(clicked()),
-                this, SLOT(markAsDirty()));
-        connect(m_applyToSubFolders, SIGNAL(clicked()),
-                this, SLOT(markAsDirty()));
-        connect(m_applyToAllFolders, SIGNAL(clicked()),
-                this, SLOT(markAsDirty()));
-        connect(m_useAsDefault, SIGNAL(clicked()),
-                this, SLOT(markAsDirty()));
+        connect(m_applyToCurrentFolder, SIGNAL(clicked(bool)),
+                this, SLOT(markAsDirty(bool)));
+        connect(m_applyToSubFolders, SIGNAL(clicked(bool)),
+                this, SLOT(markAsDirty(bool)));
+        connect(m_applyToAllFolders, SIGNAL(clicked(bool)),
+                this, SLOT(markAsDirty(bool)));
+        connect(m_useAsDefault, SIGNAL(clicked(bool)),
+                this, SLOT(markAsDirty(bool)));
     }
 
     main->setLayout(topLayout);