From c8b837a47b6ea4d6d84f0c72eb67502fe6cc6d78 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Wed, 31 Jan 2007 22:14:46 +0000 Subject: [PATCH] clear the status bar when doing an undo operation svn path=/trunk/playground/utils/dolphin/; revision=628910 --- src/dolphinmainwindow.cpp | 8 +++++++- src/dolphinmainwindow.h | 3 +++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index fa9835480..a2f99a243 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -488,6 +488,12 @@ void DolphinMainWindow::slotUndoTextChanged(const QString& text) } } +void DolphinMainWindow::undo() +{ + clearStatusBar(); + KonqUndoManager::self()->undo(); +} + void DolphinMainWindow::cut() { QMimeData* mimeData = new QMimeData(); @@ -973,7 +979,7 @@ void DolphinMainWindow::setupActions() KStandardAction::quit(this, SLOT(quit()), actionCollection()); // setup 'Edit' menu - KStandardAction::undo(KonqUndoManager::self(), + KStandardAction::undo(this, SLOT(undo()), actionCollection()); diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h index 2d11480a9..bc285a4db 100644 --- a/src/dolphinmainwindow.h +++ b/src/dolphinmainwindow.h @@ -171,6 +171,9 @@ private slots: /** Sets the text of the 'Undo' menu action to \a text. */ void slotUndoTextChanged(const QString& text); + /** Performs the current undo operation. */ + void undo(); + /** * Copies all selected items to the clipboard and marks * the items as cutted. -- 2.47.3