]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/textctrl.cpp
GetValue() converts using wxConv_current...
[wxWidgets.git] / src / gtk / textctrl.cpp
index d300952a7f3c6580d8992de3d25b70e98458139a..bdbc8e279ffb4f649b56ad3701821dbc0c88d025 100644 (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;
 }