]> git.saurik.com Git - wxWidgets.git/commitdiff
work around probable bug in GTK+ 2.18 when calling WriteText on a new, empty control...
authorPaul Cornett <paulcor@bullseye.com>
Wed, 4 Nov 2009 05:18:38 +0000 (05:18 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Wed, 4 Nov 2009 05:18:38 +0000 (05:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/textctrl.cpp

index 8af511ffc7cbf04e1b908d613f9986fcd83baec7..6a8d22424a41b5dac8af4015337c82f6774befbf 100644 (file)
@@ -351,7 +351,7 @@ extern "C" {
 static void
 au_check_word( GtkTextIter *s, GtkTextIter *e )
 {
-    static const char *URIPrefixes[] =
+    static const char *const URIPrefixes[] =
     {
         "http://",
         "ftp://",
@@ -704,6 +704,9 @@ bool wxTextCtrl::Create( wxWindow *parent,
         // a single-line text control: no need for scrollbars
         m_widget =
         m_text = gtk_entry_new();
+        // work around probable bug in GTK+ 2.18 when calling WriteText on a
+        // new, empty control, see http://trac.wxwidgets.org/ticket/11409
+        gtk_entry_get_text((GtkEntry*)m_text);
 
         if (style & wxNO_BORDER)
             g_object_set (m_text, "has-frame", FALSE, NULL);