diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-09-09 22:30:21 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-09-09 23:00:56 +0200 |
commit | f067ce79b19e7f23940510dfa88fb5fc9febc41d (patch) | |
tree | 8ea080376ce5689d8249abcb2edc18637beb9cc7 /iup/src/win/iupwin_common.c | |
parent | 118211dab6af167167ce643d40607e6753b0e000 (diff) |
Removing SetRedraw, and trying a bulk method instead.
Diffstat (limited to 'iup/src/win/iupwin_common.c')
-rwxr-xr-x | iup/src/win/iupwin_common.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/iup/src/win/iupwin_common.c b/iup/src/win/iupwin_common.c index 7a20d8c..0f53e68 100755 --- a/iup/src/win/iupwin_common.c +++ b/iup/src/win/iupwin_common.c @@ -100,11 +100,6 @@ void iupdrvRedrawNow(Ihandle *ih) RedrawWindow(ih->handle,NULL,NULL,RDW_ERASE|RDW_INVALIDATE|RDW_INTERNALPAINT|RDW_UPDATENOW); } -void iupdrvSetRedraw(Ihandle *ih, int value) -{ - SendMessage(ih->handle, WM_SETREDRAW, value ? TRUE : FALSE, 0); -} - void iupdrvPostRedraw(Ihandle *ih) { /* Post a REDRAW */ |