wxImage::Create() should be bool, not void
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20578 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -162,8 +162,8 @@ public:
|
||||
#endif
|
||||
#endif
|
||||
|
||||
void Create( int width, int height, bool clear = true );
|
||||
void Create( int width, int height, unsigned char* data, bool static_data = FALSE );
|
||||
bool Create( int width, int height, bool clear = true );
|
||||
bool Create( int width, int height, unsigned char* data, bool static_data = FALSE );
|
||||
void Destroy();
|
||||
|
||||
// creates an identical copy of the image (the = operator
|
||||
|
Reference in New Issue
Block a user