┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.h
diff options
context:
space:
mode:
authorLukáš Tinkl <[email protected]>2014-11-03 23:52:18 +0100
committerLukáš Tinkl <[email protected]>2014-11-03 23:52:18 +0100
commit037d5db85bb0bd798d40c557d424c5c9b87457a8 (patch)
treee032bfeb3f7e6bf3a1e118ff195df9009949a7d6 /src/dolphinmainwindow.h
parentb96def1856bfd043ba7dae56368ceed6940bd6c4 (diff)
Q_DECL_OVERRIDE
Diffstat (limited to 'src/dolphinmainwindow.h')
-rw-r--r--src/dolphinmainwindow.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h
index 12933f9ce..462d3d362 100644
--- a/src/dolphinmainwindow.h
+++ b/src/dolphinmainwindow.h
@@ -147,16 +147,16 @@ signals:
protected:
/** @see QWidget::showEvent() */
- virtual void showEvent(QShowEvent* event);
+ virtual void showEvent(QShowEvent* event) Q_DECL_OVERRIDE;
/** @see QMainWindow::closeEvent() */
- virtual void closeEvent(QCloseEvent* event);
+ virtual void closeEvent(QCloseEvent* event) Q_DECL_OVERRIDE;
/** @see KMainWindow::saveProperties() */
- virtual void saveProperties(KConfigGroup& group);
+ virtual void saveProperties(KConfigGroup& group) Q_DECL_OVERRIDE;
/** @see KMainWindow::readProperties() */
- virtual void readProperties(const KConfigGroup& group);
+ virtual void readProperties(const KConfigGroup& group) Q_DECL_OVERRIDE;
private slots:
/**
@@ -494,7 +494,7 @@ private:
public:
UndoUiInterface();
virtual ~UndoUiInterface();
- virtual void jobError(KIO::Job* job);
+ virtual void jobError(KIO::Job* job) Q_DECL_OVERRIDE;
};
KNewFileMenu* m_newFileMenu;