diff options
Diffstat (limited to 'iup/src/gtk/iupgtk_text.c')
-rwxr-xr-x | iup/src/gtk/iupgtk_text.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/iup/src/gtk/iupgtk_text.c b/iup/src/gtk/iupgtk_text.c index 9499c20..c5961de 100755 --- a/iup/src/gtk/iupgtk_text.c +++ b/iup/src/gtk/iupgtk_text.c @@ -1144,8 +1144,21 @@ static char* gtkTextGetOverwriteAttrib(Ihandle* ih) return "NO"; } -void iupdrvTextAddFormatTag(Ihandle* ih, Ihandle* formattag) +void* iupdrvTextAddFormatTagStartBulk(Ihandle* ih) { + (void)ih; +} + +void iupdrvTextAddFormatTagStopBulk(Ihandle* ih, void* state) +{ + (void)ih; + (void)state; +} + +void iupdrvTextAddFormatTag(Ihandle* ih, Ihandle* formattag, int bulk) +{ + (void)bulk; + GtkTextBuffer *buffer; GtkTextIter start_iter, end_iter; GtkTextTag* tag; |