]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/radiobox.cpp
Some additions to the 12-bit patch.
[wxWidgets.git] / src / motif / radiobox.cpp
index 6d4d088da2612c83cc5c8984234fa254568f1dd7..82baee26db9e7a8d547c7c92dcb8f1c2eddf12cd 100644 (file)
@@ -17,6 +17,8 @@
 #define XtDisplay XTDISPLAY
 #endif
 
+#include "wx/defs.h"
+
 #include "wx/radiobox.h"
 #include "wx/utils.h"
 
@@ -484,7 +486,7 @@ void wxRadioBoxCallback (Widget w, XtPointer clientData,
   wxRadioBox *item = (wxRadioBox *) clientData;
   int sel = -1;
   int i;
-  for (i = 0; i < item->Number(); i++)
+  for (i = 0; i < item->GetCount(); i++)
     if (item->GetRadioButtons() && ((Widget) (item->GetRadioButtons()[i]) == w))
       sel = i;
   item->SetSel(sel);