]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/radiocmn.cpp
Warning fixes, source cleaning.
[wxWidgets.git] / src / common / radiocmn.cpp
index c732658d751922db3879e930c7b048b2da9b2f47..c936cc3593c14152020e551c337d662ed311e898 100644 (file)
@@ -98,7 +98,7 @@ int wxRadioBoxBase::GetNextItem(int item, wxDirection dir, long style) const
 
         default:
             wxFAIL_MSG( _T("unexpected wxDirection value") );
-            return -1;
+            return wxNOT_FOUND;
     }
 
     // ensure that the item is in range [0..count)
@@ -134,5 +134,19 @@ int wxRadioBoxBase::GetNextItem(int item, wxDirection dir, long style) const
     return item;
 }
 
+#if WXWIN_COMPATIBILITY_2_4
+
+// these functions are deprecated and don't do anything
+int wxRadioBoxBase::GetNumberOfRowsOrCols() const
+{
+    return 1;
+}
+
+void wxRadioBoxBase::SetNumberOfRowsOrCols(int WXUNUSED(n))
+{
+}
+
+#endif // WXWIN_COMPATIBILITY_2_4
+
 #endif // wxUSE_RADIOBOX