From: mlichvar Date: Thu, 12 Apr 2007 16:50:47 +0000 (+0000) Subject: - initialize isMapped X-Git-Tag: r0-52-7~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=009f3ebfa4f29979b41f385d4f7f95ba4157ddb9;p=thirdparty%2Fnewt.git - initialize isMapped --- diff --git a/checkbox.c b/checkbox.c index 3ff0dec..85cd49e 100644 --- a/checkbox.c +++ b/checkbox.c @@ -131,6 +131,7 @@ newtComponent newtCheckbox(int left, int top, const char * text, char defValue, co->top = top; co->left = left; co->takesFocus = 1; + co->isMapped = 0; return co; }