X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5b87f8bf2ea3b9ae7ac0ae812a311d31cce13bb7..a0c6a355b7b53866286ec6263b99f787cfdbe731:/src/gtk/textctrl.cpp diff --git a/src/gtk/textctrl.cpp b/src/gtk/textctrl.cpp index 0b1fc61efe..7ae4bda8cb 100644 --- a/src/gtk/textctrl.cpp +++ b/src/gtk/textctrl.cpp @@ -7,10 +7,13 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "textctrl.h" #endif +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" + #include "wx/textctrl.h" #include "wx/utils.h" #include "wx/intl.h" @@ -65,28 +68,16 @@ static void wxGtkTextInsert(GtkWidget *text, ? attr.GetBackgroundColour().GetColor() : NULL; - GtkTextIter start, end; - GtkTextMark *mark; - // iterators are invalidated by any mutation that affects 'indexable' buffer contents, - // so we save current position in a mark - // we need a mark of left gravity, so we cannot use - // mark = gtk_text_buffer_get_insert (text_buffer) - - gtk_text_buffer_get_iter_at_mark( text_buffer, &start, - gtk_text_buffer_get_insert (text_buffer) ); - mark = gtk_text_buffer_create_mark( text_buffer, NULL, &start, TRUE/*left gravity*/ ); - - gtk_text_buffer_insert_at_cursor( text_buffer, buffer, strlen(buffer) ); - - gtk_text_buffer_get_iter_at_mark( text_buffer, &end, - gtk_text_buffer_get_insert (text_buffer) ); - gtk_text_buffer_get_iter_at_mark( text_buffer, &start, mark ); - GtkTextTag *tag; tag = gtk_text_buffer_create_tag( text_buffer, NULL, "font-desc", font_description, "foreground-gdk", colFg, "background-gdk", colBg, NULL ); - gtk_text_buffer_apply_tag( text_buffer, tag, &start, &end ); + + GtkTextIter iter; + gtk_text_buffer_get_iter_at_mark( text_buffer, &iter, + gtk_text_buffer_get_insert (text_buffer) ); + + gtk_text_buffer_insert_with_tags( text_buffer, &iter, buffer, strlen(buffer), tag, NULL ); } #else static void wxGtkTextInsert(GtkWidget *text,