]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/textctrl.cpp
* Hope this is the last bug fix in the wxThread merge ...
[wxWidgets.git] / src / gtk1 / textctrl.cpp
index f43f88964d764bea5050d8637a2f42b179b38e3b..f1c4883d4494c2717ec539bf883dfa20b729f552 100644 (file)
@@ -126,7 +126,7 @@ void wxTextCtrl::WriteText( const wxString &text )
   
   if (m_windowStyle & wxTE_MULTILINE)
   {
-    gint len = gtk_text_get_length( GTK_TEXT(m_widget) ) - 1;
+    gint len = gtk_text_get_length( GTK_TEXT(m_widget) );
     gtk_editable_insert_text( GTK_EDITABLE(m_widget), text, text.Length(), &len );
   }
   else
@@ -137,11 +137,15 @@ void wxTextCtrl::WriteText( const wxString &text )
 
 bool wxTextCtrl::LoadFile( const wxString &WXUNUSED(file) )
 {
+  wxFAIL_MSG("wxTextCtrl::LoadFile not implemented");
+
   return FALSE;
 };
 
 bool wxTextCtrl::SaveFile( const wxString &WXUNUSED(file) )
 {
+  wxFAIL_MSG("wxTextCtrl::SaveFile not implemented");
+
   return FALSE;
 };
 
@@ -211,6 +215,7 @@ void wxTextCtrl::SetSelection( const long from, const long to )
 
 void wxTextCtrl::ShowPosition( const long WXUNUSED(pos) )
 {
+  wxFAIL_MSG("wxTextCtrl::ShowPosition not implemented");
 };
 
 long wxTextCtrl::GetInsertionPoint(void) const