From 949e0a38278196e5ace3caa1c5c24d4f0cb36a6a Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Thu, 14 Sep 2006 14:39:13 +0000 Subject: [PATCH] added check for supported depth and 'not implemented' wxFAIL_MSG git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41213 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/dfb/bitmap.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dfb/bitmap.cpp b/src/dfb/bitmap.cpp index 25d426dbeb..75dc5ea24a 100644 --- a/src/dfb/bitmap.cpp +++ b/src/dfb/bitmap.cpp @@ -212,6 +212,7 @@ bool wxBitmap::Create(int width, int height, int depth) UnRef(); wxCHECK_MSG( width > 0 && height > 0, false, wxT("invalid bitmap size") ); + wxCHECK_MSG( depth == -1, false, wxT("only default depth supported now") ); DFBSurfaceDescription desc; desc.flags = (DFBSurfaceDescriptionFlags)( @@ -264,6 +265,8 @@ wxBitmap::wxBitmap(const wxString &filename, wxBitmapType type) wxBitmap::wxBitmap(const char bits[], int width, int height, int depth) { wxCHECK_RET( depth == 1, wxT("can only create mono bitmap from XBM data") ); + + wxFAIL_MSG( _T("not implemented") ); } bool wxBitmap::Ok() const -- 2.50.0