From 2b4b8e044b709c6e4bc4f4f2a4fa883ea6012f53 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sat, 25 Oct 2014 18:06:36 +0000 Subject: [PATCH] use wxOVERRIDE git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78073 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msgdlg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/msgdlg.h b/include/wx/msgdlg.h index ab7660d2b7..28e53d320b 100644 --- a/include/wx/msgdlg.h +++ b/include/wx/msgdlg.h @@ -103,8 +103,8 @@ public: // Title and caption are the same thing, GetCaption() mostly exists just // for compatibility. - virtual void SetTitle(const wxString& title) { m_caption = title; } - virtual wxString GetTitle() const { return m_caption; } + virtual void SetTitle(const wxString& title) wxOVERRIDE { m_caption = title; } + virtual wxString GetTitle() const wxOVERRIDE { return m_caption; } virtual void SetMessage(const wxString& message)