diff options
| author | Aaron J. Seigo <[email protected]> | 2007-03-03 03:07:04 +0000 |
|---|---|---|
| committer | Aaron J. Seigo <[email protected]> | 2007-03-03 03:07:04 +0000 |
| commit | 9d24c28b4ba3ac62b698a53925f9747850959d63 (patch) | |
| tree | 62ee86ecba7cc36e8c3e766f2f3c4334ae496956 /src/urlnavigator.cpp | |
| parent | 73f6409fe052a063d1089b76f7de5b4832c22c68 (diff) | |
respect the show hidden files settingin the url nav bar
svn path=/trunk/KDE/kdebase/apps/; revision=638732
Diffstat (limited to 'src/urlnavigator.cpp')
| -rw-r--r-- | src/urlnavigator.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/urlnavigator.cpp b/src/urlnavigator.cpp index 1ac92474e..e273e76cb 100644 --- a/src/urlnavigator.cpp +++ b/src/urlnavigator.cpp @@ -69,6 +69,7 @@ UrlNavigator::UrlNavigator(const KUrl& url, QWidget* parent) : QWidget(parent), m_active(true), + m_showHiddenFiles(false), m_historyIndex(0), m_layout(0), m_protocols(0), @@ -231,6 +232,11 @@ void UrlNavigator::setActive(bool active) } } +void UrlNavigator::setShowHiddenFiles( bool show ) +{ + m_showHiddenFiles = show; +} + void UrlNavigator::dropUrls(const KUrl::List& urls, const KUrl& destination) { |
