// Name: bitmap.cpp
// Author: Vaclav Slavik
// RCS-ID: $Id$
-// Copyright: (c) 2001 Vaclav Slavik
+// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
{
wxCHECK_MSG( Ok(), FALSE, wxT("invalid bitmap") );
- long width, height;
+ int width, height;
width = GetWidth();
height = GetHeight();
case 4: cnt = 16; break;
case 8: cnt = 256; break;
default:
+ cnt = 0;
wxFAIL_MSG( wxT("bitmap with this depth cannot have palette") );
break;
}