]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/radiobox.cpp
fix for rather mysterious problem when deleting the list ctrl
[wxWidgets.git] / src / motif / radiobox.cpp
index 3f2f7b5fd6915e0950fbe2fa118243517d456d96..96a2f01808434fbc4b5fba9da4492a39a48a41ef 100644 (file)
@@ -17,6 +17,8 @@
 #define XtDisplay XTDISPLAY
 #endif
 
+#include "wx/defs.h"
+
 #include "wx/radiobox.h"
 #include "wx/utils.h"
 
@@ -175,18 +177,8 @@ bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
 #endif
                                     XmNfontList, fontList,
                                                  NULL);
-#ifdef __VMS__
-#pragma message disable voiincconext
-       // VMS gives here the compiler warning:
-       // conversion from pointer to function to void* permitted
-       // as an extension
-#endif
         XtAddCallback ((Widget) m_radioButtons[i], XmNvalueChangedCallback, (XtCallbackProc) wxRadioBoxCallback,
-                     (XtCallbackProc) this);
-#ifdef __VMS__
-#pragma message enable voiincconext
-#endif
-
+                     (XtPointer) this);
     }
     SetSelection (0);