]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/radiobut.cpp
added wxUSE_PALETTE and fixed compilation with it set to 0
[wxWidgets.git] / src / motif / radiobut.cpp
index 51b1241ba5792a0c27ae5c8bf880d9e9d52e30a0..9d77c21388a01c6b2de3990fcab1f57c2c86b104 100644 (file)
@@ -17,6 +17,8 @@
 #define XtDisplay XTDISPLAY
 #endif
 
+#include "wx/defs.h"
+
 #include "wx/radiobut.h"
 #include "wx/utils.h"
 
@@ -87,17 +89,8 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
         NULL);
     XmStringFree (text);
 
-#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 (radioButtonWidget, XmNvalueChangedCallback, (XtCallbackProc) wxRadioButtonCallback,
-        (XtCallbackProc) this);
-#ifdef __VMS__
-#pragma message enable voiincconext
-#endif
+        (XtPointer) this);
 
     m_mainWidget = (WXWidget) radioButtonWidget;