use wxOVERRIDE
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76220 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -19,27 +19,27 @@ public:
|
||||
long style = wxOK|wxCENTRE,
|
||||
const wxPoint& pos = wxDefaultPosition);
|
||||
|
||||
virtual int ShowModal();
|
||||
virtual bool Show(bool WXUNUSED(show) = true) { return false; }
|
||||
virtual int ShowModal() wxOVERRIDE;
|
||||
virtual bool Show(bool WXUNUSED(show) = true) wxOVERRIDE { return false; }
|
||||
|
||||
protected:
|
||||
// implement some base class methods to do nothing to avoid asserts and
|
||||
// GTK warnings, since this is not a real wxDialog.
|
||||
virtual void DoSetSize(int WXUNUSED(x), int WXUNUSED(y),
|
||||
int WXUNUSED(width), int WXUNUSED(height),
|
||||
int WXUNUSED(sizeFlags) = wxSIZE_AUTO) {}
|
||||
int WXUNUSED(sizeFlags) = wxSIZE_AUTO) wxOVERRIDE {}
|
||||
virtual void DoMoveWindow(int WXUNUSED(x), int WXUNUSED(y),
|
||||
int WXUNUSED(width), int WXUNUSED(height)) {}
|
||||
int WXUNUSED(width), int WXUNUSED(height)) wxOVERRIDE {}
|
||||
// override to convert wx mnemonics to GTK+ ones and handle stock ids
|
||||
virtual void DoSetCustomLabel(wxString& var, const ButtonLabel& label);
|
||||
virtual void DoSetCustomLabel(wxString& var, const ButtonLabel& label) wxOVERRIDE;
|
||||
|
||||
private:
|
||||
// override to use stock GTK+ defaults instead of just string ones
|
||||
virtual wxString GetDefaultYesLabel() const;
|
||||
virtual wxString GetDefaultNoLabel() const;
|
||||
virtual wxString GetDefaultOKLabel() const;
|
||||
virtual wxString GetDefaultCancelLabel() const;
|
||||
virtual wxString GetDefaultHelpLabel() const;
|
||||
virtual wxString GetDefaultYesLabel() const wxOVERRIDE;
|
||||
virtual wxString GetDefaultNoLabel() const wxOVERRIDE;
|
||||
virtual wxString GetDefaultOKLabel() const wxOVERRIDE;
|
||||
virtual wxString GetDefaultCancelLabel() const wxOVERRIDE;
|
||||
virtual wxString GetDefaultHelpLabel() const wxOVERRIDE;
|
||||
|
||||
// create the real GTK+ dialog: this is done from ShowModal() to allow
|
||||
// changing the message between constructing the dialog and showing it
|
||||
|
Reference in New Issue
Block a user