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/iup_layout.c | |
parent | 118211dab6af167167ce643d40607e6753b0e000 (diff) |
Removing SetRedraw, and trying a bulk method instead.
Diffstat (limited to 'iup/src/iup_layout.c')
-rwxr-xr-x | iup/src/iup_layout.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/iup/src/iup_layout.c b/iup/src/iup_layout.c index fc9dcf6..9387135 100755 --- a/iup/src/iup_layout.c +++ b/iup/src/iup_layout.c @@ -91,16 +91,6 @@ void IupRedraw(Ihandle* ih, int children) iLayoutDisplayRedrawChildren(ih); } -void IupSetRedraw(Ihandle* ih, int value) -{ - iupASSERT(iupObjectCheck(ih)); - if (!iupObjectCheck(ih)) - return; - - if (ih->handle && ih->iclass->nativetype != IUP_TYPEVOID) - iupdrvSetRedraw(ih, value); -} - void iupLayoutUpdate(Ihandle* ih) { Ihandle* child; |