]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/textctrl.cpp
Added some missing EVT_ functions
[wxWidgets.git] / src / gtk / textctrl.cpp
index 3fc3e5386ce14438534d97153cbcf765512dbc2f..8811350e7c8b36dd7fc1a2907263f973a204207b 100644 (file)
@@ -330,7 +330,7 @@ void wxTextCtrl::WriteText( const wxString &text )
     {
         /* this moves the cursor pos to behind the inserted text */
         gint len = GTK_EDITABLE(m_text)->current_pos;
-
+        
 #if wxUSE_UNICODE
         wxWX2MBbuf buf = text.mbc_str();
         gtk_editable_insert_text( GTK_EDITABLE(m_text), buf, strlen(buf), &len );