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
This commit is contained in:
Václav Slavík 2006-09-14 16:20:00 +00:00
parent a46d481471
commit 3278b06e6b

View 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