fix wxGTK1 compilation after wxTextEntry DoGetValue() change
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59292 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -92,7 +92,7 @@ public:
|
||||
virtual void SetSelection(int n);
|
||||
virtual void SetString(unsigned int n, const wxString &text);
|
||||
|
||||
wxString GetValue() const;
|
||||
wxString GetValue() const { return DoGetValue(); }
|
||||
void SetValue(const wxString& value);
|
||||
void WriteText(const wxString& value);
|
||||
|
||||
@@ -169,7 +169,8 @@ protected:
|
||||
|
||||
virtual wxSize DoGetBestSize() const;
|
||||
|
||||
// implement wxTextEntry pure virtual method
|
||||
// implement wxTextEntry pure virtual methods
|
||||
virtual wxString DoGetValue() const;
|
||||
virtual wxWindow *GetEditableWindow() { return this; }
|
||||
|
||||
// Widgets that use the style->base colour for the BG colour should
|
||||
|
Reference in New Issue
Block a user