diff options
Diffstat (limited to 'iup/src/mot/iupmot_text.c')
-rwxr-xr-x | iup/src/mot/iupmot_text.c | 14 |
1 files changed, 13 insertions, 1 deletions
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) |