use wxOVERRIDE in wxMSW sources

This commit is contained in:
Paul Cornett
2016-09-23 07:59:11 -07:00
parent 9b477e46e5
commit 9b19a6e529
121 changed files with 1454 additions and 1454 deletions

View File

@@ -53,7 +53,7 @@ public:
virtual ~wxCursorRefData() { Free(); }
virtual void Free();
virtual void Free() wxOVERRIDE;
// return the size of the standard cursor: notice that the system only
@@ -89,14 +89,14 @@ static wxCursor *gs_globalCursor = NULL;
class wxCursorModule : public wxModule
{
public:
virtual bool OnInit()
virtual bool OnInit() wxOVERRIDE
{
gs_globalCursor = new wxCursor;
return true;
}
virtual void OnExit()
virtual void OnExit() wxOVERRIDE
{
wxDELETE(gs_globalCursor);
}