GetValue() converts using wxConv_current...

my app seems to be starting to work in Unicode mode,
will wonders never cease.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2277 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven
1999-04-24 22:36:02 +00:00
parent 2b07d71308
commit 7ef156f797
2 changed files with 2 additions and 2 deletions

View File

@@ -293,7 +293,7 @@ wxString wxTextCtrl::GetValue() const
}
else
{
tmp = gtk_entry_get_text( GTK_ENTRY(m_text) );
tmp = wxString(gtk_entry_get_text( GTK_ENTRY(m_text) ),*wxConv_current);
}
return tmp;
}