summaryrefslogtreecommitdiff
path: root/iup/src/gtk
diff options
context:
space:
mode:
authorNicolas Noble <pixel@nobis-crew.org>2010-09-09 10:47:04 -0700
committerNicolas Noble <pixel@nobis-crew.org>2010-09-09 10:47:04 -0700
commitbe46128d75ff8f2739b856dcc4ec41bebb90a666 (patch)
tree6f8ac0c4aead39bbbc38beaec5a1c403059f9047 /iup/src/gtk
parent53d6ee570041c7e47c02dd8b4ca753a3b020369f (diff)
Adding the SetRedraw() directive - only for Windows.
Diffstat (limited to 'iup/src/gtk')
-rwxr-xr-xiup/src/gtk/iupgtk_common.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/iup/src/gtk/iupgtk_common.c b/iup/src/gtk/iupgtk_common.c
index d84c1c8..a27087e 100755
--- a/iup/src/gtk/iupgtk_common.c
+++ b/iup/src/gtk/iupgtk_common.c
@@ -107,6 +107,12 @@ void iupdrvRedrawNow(Ihandle *ih)
gdk_window_process_updates(window, FALSE);
}
+void iupdrvSetRedraw(Ihandle *ih, int value)
+{
+ (void)ih;
+ (void)value;
+}
+
void iupdrvScreenToClient(Ihandle* ih, int *x, int *y)
{
gint win_x = 0, win_y = 0;