diff options
| author | Peter Penz <[email protected]> | 2007-10-26 18:34:45 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-10-26 18:34:45 +0000 |
| commit | c1f27bb620337c7f173fce1dd3097fa3e43c2878 (patch) | |
| tree | f86a10b77112bf889f823e10d1db6352e5d2219b /src/dolphincontroller.cpp | |
| parent | 1f331872b2362a0c55fec66fab7ca340a2862188 (diff) | |
Simplify the DolphinController: The "show hidden files" state can be retrieved by the DolphinView, there is no need introducing additional signals + states. Further cleanups will follow...
svn path=/trunk/KDE/kdebase/apps/; revision=729721
Diffstat (limited to 'src/dolphincontroller.cpp')
| -rw-r--r-- | src/dolphincontroller.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/dolphincontroller.cpp b/src/dolphincontroller.cpp index ebd85e021..bdb97170b 100644 --- a/src/dolphincontroller.cpp +++ b/src/dolphincontroller.cpp @@ -23,11 +23,9 @@ DolphinController::DolphinController(DolphinView* dolphinView) : QObject(dolphinView), - m_showHiddenFiles(false), m_showPreview(false), m_zoomInPossible(false), m_zoomOutPossible(false), -//m_additionalInfoCount(0), m_url(), m_dolphinView(dolphinView) { @@ -87,14 +85,6 @@ void DolphinController::indicateAdditionalInfoChange(const KFileItemDelegate::In emit additionalInfoChanged(info); } -void DolphinController::setShowHiddenFiles(bool show) -{ - if (m_showHiddenFiles != show) { - m_showHiddenFiles = show; - emit showHiddenFilesChanged(show); - } -} - void DolphinController::setShowPreview(bool show) { if (m_showPreview != show) { @@ -103,14 +93,6 @@ void DolphinController::setShowPreview(bool show) } } -/*void DolphinController::setAdditionalInfoCount(int count) -{ - if (m_additionalInfoCount != count) { - m_additionalInfoCount = count; - emit additionalInfoCountChanged(count); - } -}*/ - void DolphinController::indicateActivationChange(bool active) { emit activationChanged(active); |
