summaryrefslogtreecommitdiff
path: root/iup/src/mot/iupmot_text.c
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 22:30:21 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 23:00:56 +0200
commitf067ce79b19e7f23940510dfa88fb5fc9febc41d (patch)
tree8ea080376ce5689d8249abcb2edc18637beb9cc7 /iup/src/mot/iupmot_text.c
parent118211dab6af167167ce643d40607e6753b0e000 (diff)
Removing SetRedraw, and trying a bulk method instead.
Diffstat (limited to 'iup/src/mot/iupmot_text.c')
-rwxr-xr-xiup/src/mot/iupmot_text.c14
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)