]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/radiobox.mm
fixed incorrect XtVaXXX() function call (thanks to g++ 4 for detecting this!)
[wxWidgets.git] / src / cocoa / radiobox.mm
index 5d04a0852862e26580176b0aa1bd17fc0c17d2db..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;
 }
@@ -103,21 +103,9 @@ bool wxRadioBox::Show(int n, bool show)
     return false;
 }
 
-    // layout parameters
-int wxRadioBox::GetColumnCount() const
-{
-    return 0;
-}
-
-int wxRadioBox::GetRowCount() const
-{
-    return 0;
-}
-
 wxSize wxRadioBox::DoGetBestSize() const
 {
     return wxSize(50,50);
 }
 
 #endif
-