From edc315a62f78e6744f7ce62b5afc4f79e58f7d7f Mon Sep 17 00:00:00 2001 From: Graham Dawes Date: Mon, 21 Jan 2019 12:49:06 +0000 Subject: [PATCH] Add wxOVERRIDE to overriden wxDialog methods for wxQT --- include/wx/qt/dialog.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/wx/qt/dialog.h b/include/wx/qt/dialog.h index 5ae3b04a33..afd9a8b080 100644 --- a/include/wx/qt/dialog.h +++ b/include/wx/qt/dialog.h @@ -31,9 +31,9 @@ public: long style = wxDEFAULT_DIALOG_STYLE, const wxString &name = wxDialogNameStr ); - virtual int ShowModal(); - virtual void EndModal(int retCode); - virtual bool IsModal() const; + virtual int ShowModal() wxOVERRIDE; + virtual void EndModal(int retCode) wxOVERRIDE; + virtual bool IsModal() const wxOVERRIDE; QDialog *GetDialogHandle() const;