diff options
| author | Shaun Reich <[email protected]> | 2009-02-14 19:45:25 +0000 |
|---|---|---|
| committer | Shaun Reich <[email protected]> | 2009-02-14 19:45:25 +0000 |
| commit | 4157103173b1718262e8c329219461f0d67b2a2a (patch) | |
| tree | 2e0865c27afaa9e77592b88a85f3f8a19703c307 /src/settings | |
| parent | 06399bda2684c2c686189f107e02ac4fe5c92d63 (diff) | |
Changed connections of the signals activated(), to currentIndexChanged() as used in 3 QComboBoxes. Remember that activated() is not always triggered when the selected item is changed.
svn path=/trunk/KDE/kdebase/apps/; revision=926180
Diffstat (limited to 'src/settings')
| -rw-r--r-- | src/settings/viewpropertiesdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/settings/viewpropertiesdialog.cpp b/src/settings/viewpropertiesdialog.cpp index 700bdb90b..ba8de4d9c 100644 --- a/src/settings/viewpropertiesdialog.cpp +++ b/src/settings/viewpropertiesdialog.cpp @@ -149,11 +149,11 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) : topLayout->addWidget(propsBox); - connect(m_viewMode, SIGNAL(activated(int)), + connect(m_viewMode, SIGNAL(currentIndexChanged(int)), this, SLOT(slotViewModeChanged(int))); - connect(m_sorting, SIGNAL(activated(int)), + connect(m_sorting, SIGNAL(currentIndexChanged(int)), this, SLOT(slotSortingChanged(int))); - connect(m_sortOrder, SIGNAL(activated(int)), + connect(m_sortOrder, SIGNAL(currentIndexChanged(int)), this, SLOT(slotSortOrderChanged(int))); connect(m_additionalInfo, SIGNAL(clicked()), this, SLOT(configureAdditionalInfo())); |
