diff options
| author | Peter Penz <[email protected]> | 2007-06-08 14:14:34 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-06-08 14:14:34 +0000 |
| commit | 6dddb2e81c6b7f3cfc2a7e9d26fab407f7bc85e6 (patch) | |
| tree | 74e52b10e698695dd390aceeb3c52fe661f49b08 /src/dolphinviewcontainer.cpp | |
| parent | 3a053415f9d7f8ae635e660f2a1537617feeff40 (diff) | |
added signals errorMessage(const QString&) and infoMessage(const QString&) for the DolphinView
svn path=/trunk/KDE/kdebase/apps/; revision=672944
Diffstat (limited to 'src/dolphinviewcontainer.cpp')
| -rw-r--r-- | src/dolphinviewcontainer.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/dolphinviewcontainer.cpp b/src/dolphinviewcontainer.cpp index 8eab3efac..a2a899bea 100644 --- a/src/dolphinviewcontainer.cpp +++ b/src/dolphinviewcontainer.cpp @@ -131,8 +131,7 @@ DolphinViewContainer::DolphinViewContainer(DolphinMainWindow* mainWindow, m_dirLister, m_dirModel, m_proxyModel, - mode, - showHiddenFiles); + mode); connect(m_view, SIGNAL(urlChanged(const KUrl&)), m_urlNavigator, SLOT(setUrl(const KUrl&))); connect(m_view, SIGNAL(requestContextMenu(KFileItem*, const KUrl&)), @@ -141,6 +140,10 @@ DolphinViewContainer::DolphinViewContainer(DolphinMainWindow* mainWindow, m_mainWindow, SLOT(dropUrls(const KUrl::List&, const KUrl&))); connect(m_view, SIGNAL(requestItemInfo(const KUrl&)), this, SLOT(showItemInfo(const KUrl&))); + connect(m_view, SIGNAL(errorMessage(const QString&)), + this, SLOT(showErrorMessage(const QString&))); + connect(m_view, SIGNAL(infoMessage(const QString&)), + this, SLOT(showInfoMessage(const QString&))); connect(m_urlNavigator, SIGNAL(urlChanged(const KUrl&)), m_view, SLOT(setUrl(const KUrl&))); |
