diff options
| author | Peter Penz <[email protected]> | 2007-10-09 21:10:17 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-10-09 21:10:17 +0000 |
| commit | 1d4cfd16fd5ceb8f37400d4890807e3c56619971 (patch) | |
| tree | f2d6cf306175a65ed61ccd91474dced063169405 /src/dolphincontroller.cpp | |
| parent | 0c1d1c42f4abeaa03522b3059c485788276464f7 (diff) | |
column view fixes:
* assure that the history does not get messed up when changing the focus to an existing column
* fix issue that the status bar does not get updated when the focus is changed between the columns
svn path=/trunk/KDE/kdebase/apps/; revision=723519
Diffstat (limited to 'src/dolphincontroller.cpp')
| -rw-r--r-- | src/dolphincontroller.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/dolphincontroller.cpp b/src/dolphincontroller.cpp index 7a6d56637..2a9e8423d 100644 --- a/src/dolphincontroller.cpp +++ b/src/dolphincontroller.cpp @@ -44,6 +44,13 @@ void DolphinController::setUrl(const KUrl& url) } } +void DolphinController::triggerUrlChangeRequest(const KUrl& url) +{ + if (m_url != url) { + emit requestUrlChange(url); + } +} + void DolphinController::triggerContextMenuRequest(const QPoint& pos) { emit activated(); |
