added unimplemented message

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16167 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2002-07-14 13:12:06 +00:00
parent 2a29485779
commit 0c32c93044
2 changed files with 8 additions and 2 deletions

View File

@@ -97,6 +97,7 @@ bool wxBitmapCheckBox::Create(wxWindow *parent, wxWindowID id,
void wxBitmapCheckBox::SetLabel(const wxBitmap *bitmap) void wxBitmapCheckBox::SetLabel(const wxBitmap *bitmap)
{ {
// TODO // TODO
wxFAIL_MSG(wxT("wxBitmapCheckBox::SetLabel() not yet implemented"));
} }
void wxBitmapCheckBox::SetSize(int x, int y, int width, int height, int sizeFlags) void wxBitmapCheckBox::SetSize(int x, int y, int width, int height, int sizeFlags)
@@ -107,11 +108,13 @@ void wxBitmapCheckBox::SetSize(int x, int y, int width, int height, int sizeFlag
void wxBitmapCheckBox::SetValue(bool val) void wxBitmapCheckBox::SetValue(bool val)
{ {
// TODO // TODO
wxFAIL_MSG(wxT("wxBitmapCheckBox::SetValue() not yet implemented"));
} }
bool wxBitmapCheckBox::GetValue() const bool wxBitmapCheckBox::GetValue() const
{ {
// TODOD // TODO
wxFAIL_MSG(wxT("wxBitmapCheckBox::GetValue() not yet implemented"));
return FALSE; return FALSE;
} }

View File

@@ -97,6 +97,7 @@ bool wxBitmapCheckBox::Create(wxWindow *parent, wxWindowID id,
void wxBitmapCheckBox::SetLabel(const wxBitmap *bitmap) void wxBitmapCheckBox::SetLabel(const wxBitmap *bitmap)
{ {
// TODO // TODO
wxFAIL_MSG(wxT("wxBitmapCheckBox::SetLabel() not yet implemented"));
} }
void wxBitmapCheckBox::SetSize(int x, int y, int width, int height, int sizeFlags) void wxBitmapCheckBox::SetSize(int x, int y, int width, int height, int sizeFlags)
@@ -107,11 +108,13 @@ void wxBitmapCheckBox::SetSize(int x, int y, int width, int height, int sizeFlag
void wxBitmapCheckBox::SetValue(bool val) void wxBitmapCheckBox::SetValue(bool val)
{ {
// TODO // TODO
wxFAIL_MSG(wxT("wxBitmapCheckBox::SetValue() not yet implemented"));
} }
bool wxBitmapCheckBox::GetValue() const bool wxBitmapCheckBox::GetValue() const
{ {
// TODOD // TODO
wxFAIL_MSG(wxT("wxBitmapCheckBox::GetValue() not yet implemented"));
return FALSE; return FALSE;
} }