]> git.saurik.com Git - wxWidgets.git/commitdiff
added wxFAIL_MSG to unimplemented SetDepth/Width/Height
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 14 Sep 2006 16:20:00 +0000 (16:20 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 14 Sep 2006 16:20:00 +0000 (16:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41219 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/dfb/bitmap.cpp

index 0e1d5229e537565aeeb48e21527b66f560016407..b50e4aac90cd8313a34d3b2d8ab93378b1ff93bd 100644 (file)
@@ -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