Commit cfc0bda9 authored by Claes Sjofors's avatar Claes Sjofors

Ge image wasn't freed

parent 153f5ef4
...@@ -139,14 +139,14 @@ GrowImage::~GrowImage() ...@@ -139,14 +139,14 @@ GrowImage::~GrowImage()
if ( hot) if ( hot)
ctx->gdraw->set_cursor( &ctx->mw, glow_eDrawCursor_Normal); ctx->gdraw->set_cursor( &ctx->mw, glow_eDrawCursor_Normal);
} }
#if defined IMLIB //#if defined IMLIB
if ( original_image) if ( original_image)
ctx->gdraw->image_free( original_image); ctx->gdraw->image_free( original_image);
if ( image) if ( image)
ctx->gdraw->image_free( image); ctx->gdraw->image_free( image);
if ( pixmap) if ( pixmap)
ctx->gdraw->pixmap_free( pixmap); ctx->gdraw->pixmap_free( pixmap);
#endif //#endif
} }
int GrowImage::insert_image( const char *imagefile) int GrowImage::insert_image( const char *imagefile)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment