summaryrefslogtreecommitdiff
path: root/iup/srccontrols/iup_cells.c
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2010-06-15 00:59:57 -0700
committerPixel <pixel@nobis-crew.org>2010-06-15 00:59:57 -0700
commiteed0eb6a476d54ce19aeff137984aa981d9e3976 (patch)
tree807891636efd2f87dcbd261e971216269973ae07 /iup/srccontrols/iup_cells.c
parentccc8261e4d48de89da4ddfe7b55e378ae0cd6f47 (diff)
Upgrading to iup 3.1
Diffstat (limited to 'iup/srccontrols/iup_cells.c')
-rwxr-xr-xiup/srccontrols/iup_cells.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/iup/srccontrols/iup_cells.c b/iup/srccontrols/iup_cells.c
index d9a7fe4..c771d6e 100755
--- a/iup/srccontrols/iup_cells.c
+++ b/iup/srccontrols/iup_cells.c
@@ -882,10 +882,16 @@ static int iCellsMapMethod(Ihandle* ih)
static void iCellsUnMapMethod(Ihandle* ih)
{
if (ih->data->cddbuffer)
+ {
cdKillCanvas(ih->data->cddbuffer);
+ ih->data->cddbuffer = NULL;
+ }
if (ih->data->cdcanvas)
+ {
cdKillCanvas(ih->data->cdcanvas);
+ ih->data->cdcanvas = NULL;
+ }
}
static int iCellsCreateMethod(Ihandle* ih, void **params)