From f067ce79b19e7f23940510dfa88fb5fc9febc41d Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Thu, 9 Sep 2010 22:30:21 +0200 Subject: Removing SetRedraw, and trying a bulk method instead. --- iup/src/mot/iupmot_common.c | 6 ------ iup/src/mot/iupmot_text.c | 14 +++++++++++++- 2 files changed, 13 insertions(+), 7 deletions(-) (limited to 'iup/src/mot') diff --git a/iup/src/mot/iupmot_common.c b/iup/src/mot/iupmot_common.c index 554504f..286e075 100755 --- a/iup/src/mot/iupmot_common.c +++ b/iup/src/mot/iupmot_common.c @@ -235,12 +235,6 @@ void iupdrvRedrawNow(Ihandle *ih) XmUpdateDisplay(ih->handle); } -void iupdrvSetRedraw(Ihandle *ih, int value) -{ - (void)ih; - (void)value; -} - void iupdrvScreenToClient(Ihandle* ih, int *x, int *y) { Window child; diff --git a/iup/src/mot/iupmot_text.c b/iup/src/mot/iupmot_text.c index d9d2c74..5af1328 100755 --- a/iup/src/mot/iupmot_text.c +++ b/iup/src/mot/iupmot_text.c @@ -43,10 +43,22 @@ #define XmNwrap "Nwrap" #endif -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)ih; (void)formattag; + (void)bulk; } void iupdrvTextAddSpin(int *w, int h) -- cgit v1.2.3