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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user