diff options
| author | Shaun Reich <[email protected]> | 2009-02-16 04:40:17 +0000 |
|---|---|---|
| committer | Shaun Reich <[email protected]> | 2009-02-16 04:40:17 +0000 |
| commit | 0e467ea6abff06e058f7db9ef49dfed7b283d641 (patch) | |
| tree | c83542206b3a5ce1d5d401e9f45ad3bcc9ba0a27 | |
| parent | b425855153de5bb24f6a60acc3560470ac65a77a (diff) | |
I forgot to change these connection statements to both send and receive boolean values in my prior commit(s). Now the View Properties Dialog will enable the apply button when the affected (4) widget values are changed.
svn path=/trunk/KDE/kdebase/apps/; revision=926757
| -rw-r--r-- | src/settings/viewpropertiesdialog.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/settings/viewpropertiesdialog.cpp b/src/settings/viewpropertiesdialog.cpp index 5e3f261f3..438bf74fb 100644 --- a/src/settings/viewpropertiesdialog.cpp +++ b/src/settings/viewpropertiesdialog.cpp @@ -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); |
