]> git.saurik.com Git - wxWidgets.git/commitdiff
XmNframeChildType is not in Motif 1.2. #ifdef appropriately.
authorJulian Smart <julian@anthemion.co.uk>
Wed, 28 Aug 2002 08:28:00 +0000 (08:28 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Wed, 28 Aug 2002 08:28:00 +0000 (08:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16839 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/motif/radiobox.cpp

index 8360baf8b4433ed9087a89a0b6d481dec615b805..91d53491d761f4c9a5e27f4aa4331f70cc3f6d57 100644 (file)
@@ -90,7 +90,7 @@ bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
 
     Widget parentWidget = (Widget) parent->GetClientWidget();
 
-    m_mainWidget = XtVaCreateWidget ("radiobxoframe",
+    m_mainWidget = XtVaCreateWidget ("radioboxframe",
                                         xmFrameWidgetClass, parentWidget,
                                         XmNshadowType, XmSHADOW_IN,
                                         XmNresizeHeight, True,
@@ -114,7 +114,11 @@ bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
 #endif
                                              XmNfontList, fontList,
                                              XmNlabelString, text(),
+// XmNframeChildType is not in Motif 1.2.
+// TODO: check this still looks OK for Motif 1.2.
+#if (XmVersion > 1200) || defined(LESSTIF_VERSION)
                                              XmNframeChildType, XmFRAME_TITLE_CHILD,
+#endif
                                              XmNchildVerticalAlignment, XmALIGNMENT_CENTER,
                                              NULL);
     }