summaryrefslogtreecommitdiff
path: root/iup/src/mot
diff options
context:
space:
mode:
Diffstat (limited to 'iup/src/mot')
-rwxr-xr-xiup/src/mot/iupmot_common.c6
-rwxr-xr-xiup/src/mot/iupmot_text.c14
2 files changed, 13 insertions, 7 deletions
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)