diff options
Diffstat (limited to 'src/plugins/macros/texteditormacrohandler.h')
-rw-r--r-- | src/plugins/macros/texteditormacrohandler.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/macros/texteditormacrohandler.h b/src/plugins/macros/texteditormacrohandler.h index 251986a3e2..9be01185da 100644 --- a/src/plugins/macros/texteditormacrohandler.h +++ b/src/plugins/macros/texteditormacrohandler.h @@ -41,13 +41,13 @@ class TextEditorMacroHandler : public IMacroHandler public: TextEditorMacroHandler(); - void startRecording(Macro *macro); - void endRecordingMacro(Macro *macro); + void startRecording(Macro *macro) override; + void endRecordingMacro(Macro *macro) override; - bool canExecuteEvent(const MacroEvent ¯oEvent); - bool executeEvent(const MacroEvent ¯oEvent); + bool canExecuteEvent(const MacroEvent ¯oEvent) override; + bool executeEvent(const MacroEvent ¯oEvent) override; - bool eventFilter(QObject *watched, QEvent *event); + bool eventFilter(QObject *watched, QEvent *event) override; void changeEditor(Core::IEditor *editor); void closeEditor(Core::IEditor *editor); |