Fix so the value given to wxTextEntryDialog::SetValue will actually be
used in the entry field. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14321 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
59840ba3b1
commit
c9468a241b
@ -41,7 +41,7 @@ public:
|
||||
long style = wxTextEntryDialogStyle,
|
||||
const wxPoint& pos = wxDefaultPosition);
|
||||
|
||||
void SetValue(const wxString& val) { m_value = val; }
|
||||
void SetValue(const wxString& val) { m_value = val; m_textctrl->SetValue(val); }
|
||||
wxString GetValue() const { return m_value; }
|
||||
|
||||
// implementation only
|
||||
|
Loading…
Reference in New Issue
Block a user