diff options
| author | Peter Penz <[email protected]> | 2009-07-29 21:56:37 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2009-07-29 21:56:37 +0000 |
| commit | a70be712fd5b33071c4733c47f810948d86dd4d8 (patch) | |
| tree | 5683e3ac6880810013a001257ce1079beeb31436 /src/dolphinview.cpp | |
| parent | a48c813fd9b4c416f23c48914889946074b96084 (diff) | |
Allow the revision control plugins to indicate information-, error- and operation-completed messages.
svn path=/trunk/KDE/kdebase/apps/; revision=1004346
Diffstat (limited to 'src/dolphinview.cpp')
| -rw-r--r-- | src/dolphinview.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 2fc664f21..589940479 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -1474,6 +1474,12 @@ void DolphinView::createView() m_previewGenerator->setPreviewShown(m_showPreview); m_revisionControlObserver = new RevisionControlObserver(view); + connect(m_revisionControlObserver, SIGNAL(infoMessage(const QString&)), + this, SIGNAL(infoMessage(const QString&))); + connect(m_revisionControlObserver, SIGNAL(errorMessage(const QString&)), + this, SIGNAL(errorMessage(const QString&))); + connect(m_revisionControlObserver, SIGNAL(operationCompletedMessage(const QString&)), + this, SIGNAL(operationCompletedMessage(const QString&))); if (DolphinSettings::instance().generalSettings()->showToolTips()) { m_toolTipManager = new ToolTipManager(view, m_proxyModel); |
