]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/radiobox.mm
Rebuild build files so all night/Tinderbox/Coverity builds could sleep well.
[wxWidgets.git] / src / cocoa / radiobox.mm
index 1e807be0c6e9834abe605cf87e2b731a7bdde252..aa699a7e2d949cc3fe8d9bea46ab030e56c9dd29 100644 (file)
@@ -1,10 +1,10 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        cocoa/radiobox.mm
+// Name:        src/cocoa/radiobox.mm
 // Purpose:     wxRadioBox
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/02/15
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2003 David Elliott
 // Licence:     wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
@@ -76,7 +76,7 @@ int wxRadioBox::GetSelection() const
 }
 
     // string access
-int wxRadioBox::GetCount() const
+size_t wxRadioBox::GetCount() const
 {
     return 0;
 }
@@ -97,19 +97,10 @@ bool wxRadioBox::Enable(int n, bool enable)
     return false;
 }
 
-void wxRadioBox::Show(int n, bool show)
+bool wxRadioBox::Show(int n, bool show)
 {
-}
-
-    // layout parameters
-int wxRadioBox::GetColumnCount() const
-{
-    return 0;
-}
-
-int wxRadioBox::GetRowCount() const
-{
-    return 0;
+    // TODO
+    return false;
 }
 
 wxSize wxRadioBox::DoGetBestSize() const
@@ -118,4 +109,3 @@ wxSize wxRadioBox::DoGetBestSize() const
 }
 
 #endif
-