From c9468a241baaa09bbc82eb45da40a1d15c630f4d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 20 Feb 2002 01:53:04 +0000 Subject: [PATCH] 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 --- include/wx/generic/textdlgg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/generic/textdlgg.h b/include/wx/generic/textdlgg.h index 7f6cb35a2c..81409bf504 100644 --- a/include/wx/generic/textdlgg.h +++ b/include/wx/generic/textdlgg.h @@ -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 -- 2.47.2