┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinview.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-10-26 18:34:45 +0000
committerPeter Penz <[email protected]>2007-10-26 18:34:45 +0000
commitc1f27bb620337c7f173fce1dd3097fa3e43c2878 (patch)
treef86a10b77112bf889f823e10d1db6352e5d2219b /src/dolphinview.cpp
parent1f331872b2362a0c55fec66fab7ca340a2862188 (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/dolphinview.cpp')
-rw-r--r--src/dolphinview.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp
index 085c791fd..c44afb219 100644
--- a/src/dolphinview.cpp
+++ b/src/dolphinview.cpp
@@ -253,7 +253,6 @@ void DolphinView::setShowHiddenFiles(bool show)
props.setShowHiddenFiles(show);
m_dirLister->setShowingDotFiles(show);
- m_controller->setShowHiddenFiles(show);
emit showHiddenFilesChanged();
loadDirectory(viewPropsUrl, true);
@@ -655,7 +654,6 @@ void DolphinView::applyViewProperties(const KUrl& url)
const bool showHiddenFiles = props.showHiddenFiles();
if (showHiddenFiles != m_dirLister->showingDotFiles()) {
m_dirLister->setShowingDotFiles(showHiddenFiles);
- m_controller->setShowHiddenFiles(showHiddenFiles);
emit showHiddenFilesChanged();
}