From a009126d777d2c6bc47d1b8ff3320579763cd86e Mon Sep 17 00:00:00 2001 From: Le Tan Date: Sat, 27 Jan 2018 19:05:51 +0800 Subject: [PATCH] fix compile warning in macOS --- src/vmdtab.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/vmdtab.h b/src/vmdtab.h index 96ab7bbf..5ddfd9db 100644 --- a/src/vmdtab.h +++ b/src/vmdtab.h @@ -91,17 +91,17 @@ public slots: // Enter edit mode. void editFile() Q_DECL_OVERRIDE; - void handleVimCmdCommandCancelled(); + void handleVimCmdCommandCancelled() Q_DECL_OVERRIDE; - void handleVimCmdCommandFinished(VVim::CommandLineType p_type, const QString &p_cmd); + void handleVimCmdCommandFinished(VVim::CommandLineType p_type, const QString &p_cmd) Q_DECL_OVERRIDE; - void handleVimCmdCommandChanged(VVim::CommandLineType p_type, const QString &p_cmd); + void handleVimCmdCommandChanged(VVim::CommandLineType p_type, const QString &p_cmd) Q_DECL_OVERRIDE; - QString handleVimCmdRequestNextCommand(VVim::CommandLineType p_type, const QString &p_cmd); + QString handleVimCmdRequestNextCommand(VVim::CommandLineType p_type, const QString &p_cmd) Q_DECL_OVERRIDE; - QString handleVimCmdRequestPreviousCommand(VVim::CommandLineType p_type, const QString &p_cmd); + QString handleVimCmdRequestPreviousCommand(VVim::CommandLineType p_type, const QString &p_cmd) Q_DECL_OVERRIDE; - QString handleVimCmdRequestRegister(int p_key, int p_modifiers); + QString handleVimCmdRequestRegister(int p_key, int p_modifiers) Q_DECL_OVERRIDE; protected: void writeBackupFile() Q_DECL_OVERRIDE;