]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/radiobox.cpp
Added ToogleTool from Markus
[wxWidgets.git] / src / gtk1 / radiobox.cpp
index 9ff546a945b93a1879b1c054d78debfaf3927739..64a36484027a0c076b7240c46b60dc4a8fc5fb5a 100644 (file)
@@ -205,31 +205,38 @@ wxString wxRadioBox::GetLabel(void) const
 
 void wxRadioBox::SetLabel( const wxString& WXUNUSED(label) )
 {
+  wxFAIL_MSG("wxRadioBox::SetLabel not implemented.");
 };
 
 void wxRadioBox::SetLabel( int WXUNUSED(item), const wxString& WXUNUSED(label) )
 {
+  wxFAIL_MSG("wxRadioBox::SetLabel not implemented.");
 };
 
 void wxRadioBox::SetLabel( int WXUNUSED(item), wxBitmap *WXUNUSED(bitmap) )
 {
+  wxFAIL_MSG("wxRadioBox::SetLabel not implemented.");
 };
 
 wxString wxRadioBox::GetLabel( int WXUNUSED(item) ) const
 {
+  wxFAIL_MSG("wxRadioBox::GetLabel not implemented.");
   return "";
 };
 
 void wxRadioBox::Enable( bool WXUNUSED(enable) )
 {
+  wxFAIL_MSG("wxRadioBox::Enable not implemented.");
 };
 
 void wxRadioBox::Enable( int WXUNUSED(item), bool WXUNUSED(enable) )
 {
+  wxFAIL_MSG("wxRadioBox::Enable not implemented.");
 };
 
 void wxRadioBox::Show( int WXUNUSED(item), bool WXUNUSED(show) )
 {
+  wxFAIL_MSG("wxRadioBox::Show not implemented.");
 };
 
 wxString wxRadioBox::GetStringSelection(void) const
@@ -275,5 +282,6 @@ int wxRadioBox::GetNumberOfRowsOrCols(void) const
 
 void wxRadioBox::SetNumberOfRowsOrCols( int WXUNUSED(n) )
 {
+  wxFAIL_MSG("wxRadioBox::SetNumberOfRowsOrCols not implemented.");
 };