]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/textctrl.cpp
Removed hack in Toolbar that breaks UI updates under MSW.
[wxWidgets.git] / src / gtk1 / textctrl.cpp
index bfa26d0b92b13eecec7ed01482be1673a979ae5d..46345f1820bd9b2a77e1531905dd00fb8e6ec423 100644 (file)
@@ -160,7 +160,9 @@ gtk_scrollbar_changed_callback( GtkWidget *WXUNUSED(widget), wxTextCtrl *win )
 
 extern bool wxIsInsideYield;
 
-typedef void (*GtkDrawCallback)(GtkWidget *widget, GdkRectangle *rect);
+extern "C" {
+    typedef void (*GtkDrawCallback)(GtkWidget *widget, GdkRectangle *rect);
+}
 
 static GtkDrawCallback gs_gtk_text_draw = NULL;
 
@@ -929,14 +931,14 @@ void wxTextCtrl::Redo()
 bool wxTextCtrl::CanUndo() const
 {
     // TODO
-    wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
+    //wxFAIL_MSG( wxT("wxTextCtrl::CanUndo not implemented") );
     return FALSE;
 }
 
 bool wxTextCtrl::CanRedo() const
 {
     // TODO
-    wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
+    //wxFAIL_MSG( wxT("wxTextCtrl::CanRedo not implemented") );
     return FALSE;
 }