From 3278b06e6b3776c6debe53c934ef604a75b96ce0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Thu, 14 Sep 2006 16:20:00 +0000 Subject: [PATCH] added wxFAIL_MSG to unimplemented SetDepth/Width/Height git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41219 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/dfb/bitmap.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/dfb/bitmap.cpp b/src/dfb/bitmap.cpp index 0e1d5229e5..b50e4aac90 100644 --- a/src/dfb/bitmap.cpp +++ b/src/dfb/bitmap.cpp @@ -469,19 +469,22 @@ void wxBitmap::SetPalette(const wxPalette& palette) void wxBitmap::SetHeight(int height) { AllocExclusive(); -#warning "todo" + + wxFAIL_MSG( _T("SetHeight not implemented") ); } void wxBitmap::SetWidth(int width) { AllocExclusive(); -#warning "todo" + + wxFAIL_MSG( _T("SetWidth not implemented") ); } void wxBitmap::SetDepth(int depth) { AllocExclusive(); -#warning "todo" + + wxFAIL_MSG( _T("SetDepth not implemented") ); } wxIDirectFBSurfacePtr wxBitmap::GetDirectFBSurface() const -- 2.47.2