Add missing wxOVERRIDE for overridden GtkGetValueFromString

This fixes a (harmless) warning in clang wxGTK builds.
This commit is contained in:
Vadim Zeitlin
2018-02-06 13:29:32 +01:00
parent 76c75d87f5
commit a957df3fc1

View File

@@ -279,7 +279,7 @@ public:
virtual bool GetValue( wxVariant &value ) const wxOVERRIDE;
private:
virtual wxVariant GtkGetValueFromString(const wxString& str) const;
virtual wxVariant GtkGetValueFromString(const wxString& str) const wxOVERRIDE;
};