summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/qt/WidgetSupport/QWebUndoCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/qt/WidgetSupport/QWebUndoCommand.h')
-rw-r--r--Source/WebKit/qt/WidgetSupport/QWebUndoCommand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebKit/qt/WidgetSupport/QWebUndoCommand.h b/Source/WebKit/qt/WidgetSupport/QWebUndoCommand.h
index b9e616925..c96e0c3d3 100644
--- a/Source/WebKit/qt/WidgetSupport/QWebUndoCommand.h
+++ b/Source/WebKit/qt/WidgetSupport/QWebUndoCommand.h
@@ -27,12 +27,12 @@ class UndoStepQt;
#ifndef QT_NO_UNDOCOMMAND
-class QWebUndoCommand : public QUndoCommand {
+class QWebUndoCommand final : public QUndoCommand {
public:
QWebUndoCommand(QSharedPointer<UndoStepQt>, QUndoCommand *parent = 0);
- void undo();
- void redo();
+ void undo() final;
+ void redo() final;
private:
QSharedPointer<UndoStepQt> m_step;