diff options
author | Nicolas Noble <pixel@nobis-crew.org> | 2010-09-09 10:47:04 -0700 |
---|---|---|
committer | Nicolas Noble <pixel@nobis-crew.org> | 2010-09-09 10:47:04 -0700 |
commit | be46128d75ff8f2739b856dcc4ec41bebb90a666 (patch) | |
tree | 6f8ac0c4aead39bbbc38beaec5a1c403059f9047 /iup/src/gtk | |
parent | 53d6ee570041c7e47c02dd8b4ca753a3b020369f (diff) |
Adding the SetRedraw() directive - only for Windows.
Diffstat (limited to 'iup/src/gtk')
-rwxr-xr-x | iup/src/gtk/iupgtk_common.c | 6 |
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; |