From: Kevin Ollivier Date: Sat, 7 Feb 2009 23:19:35 +0000 (+0000) Subject: Assert if these methods are triggered to alert the user they are not implemented. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b0b71b31c3b07b973d230c179d74b41eb5aaa115?ds=sidebyside Assert if these methods are triggered to alert the user they are not implemented. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/renderg.cpp b/src/generic/renderg.cpp index e55d87bb71..b055226017 100644 --- a/src/generic/renderg.cpp +++ b/src/generic/renderg.cpp @@ -734,25 +734,25 @@ wxRendererGeneric::DrawFocusRect(wxWindow* WXUNUSED(win), wxDC& dc, const wxRect void wxRendererGeneric::DrawChoice(wxWindow* WXUNUSED(win), wxDC& WXUNUSED(dc), const wxRect& WXUNUSED(rect), int WXUNUSED(flags)) { - // FIXME: Implement + wxFAIL_MSG("UNIMPLEMENTED: wxRendererGeneric::DrawChoice"); } void wxRendererGeneric::DrawComboBox(wxWindow* WXUNUSED(win), wxDC& WXUNUSED(dc), const wxRect& WXUNUSED(rect), int WXUNUSED(flags)) { - // FIXME: Implement + wxFAIL_MSG("UNIMPLEMENTED: wxRendererGeneric::DrawComboBox"); } void wxRendererGeneric::DrawOptionButton(wxWindow* WXUNUSED(win), wxDC& WXUNUSED(dc), const wxRect& WXUNUSED(rect), int WXUNUSED(flags)) { - // FIXME: Implement + wxFAIL_MSG("UNIMPLEMENTED: wxRendererGeneric::DrawRadioButton"); } void wxRendererGeneric::DrawTextCtrl(wxWindow* WXUNUSED(win), wxDC& WXUNUSED(dc), const wxRect& WXUNUSED(rect), int WXUNUSED(flags)) { - // FIXME: Implement + wxFAIL_MSG("UNIMPLEMENTED: wxRendererGeneric::DrawTextCtrl"); }