]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/checkbox.cpp
Corrected display for empty lines in text control.
[wxWidgets.git] / src / mac / checkbox.cpp
index 88a00906e0bf42777a0c0e47e418358b9c34bf41..94c9c92b2f0beee7ab0cdef4534ce5482eb1ee90 100644 (file)
@@ -97,6 +97,7 @@ bool wxBitmapCheckBox::Create(wxWindow *parent, wxWindowID id,
 void wxBitmapCheckBox::SetLabel(const wxBitmap *bitmap)
 {
     // TODO
+    wxFAIL_MSG(wxT("wxBitmapCheckBox::SetLabel() not yet implemented"));
 }
 
 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)
 {
     // TODO
+    wxFAIL_MSG(wxT("wxBitmapCheckBox::SetValue() not yet implemented"));
 }
 
 bool wxBitmapCheckBox::GetValue() const
 {
-    // TODOD
+    // TODO
+    wxFAIL_MSG(wxT("wxBitmapCheckBox::GetValue() not yet implemented"));
     return FALSE;
 }