]> git.saurik.com Git - wxWidgets.git/commitdiff
string and m_majorDim == 0 bugs fixed
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 28 Jul 1999 22:27:44 +0000 (22:27 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 28 Jul 1999 22:27:44 +0000 (22:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3184 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/motif/radiobox.cpp

index 05e006095b35f063bf303a8f18dd7c8cd81e9369..83cb28543e398bac42516c62c66199cd1d09e670 100644 (file)
@@ -88,8 +88,6 @@ bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
 
     wxString label1(wxStripMenuCodes(title));
 
-    wxXmString text(label1.c_str());
-
     Widget formWidget = XtVaCreateManagedWidget (name.c_str(),
                                         xmFormWidgetClass, parentWidget,
                                         XmNmarginHeight, 0,
@@ -111,7 +109,7 @@ bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
                                              xmLabelWidgetClass, formWidget,
 #endif
                                              XmNfontList, fontList,
-                                             XmNlabelString, text,
+                                             XmNlabelString, text(),
                                              NULL);
     }
 
@@ -126,11 +124,11 @@ bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
 
     Arg args[3];
 
-    majorDim = (n + majorDim - 1) / majorDim;
+    majorDim = (n + m_majorDim - 1) / majorDim;
 
     XtSetArg (args[0], XmNorientation, ((style & wxHORIZONTAL) == wxHORIZONTAL ?
                                           XmHORIZONTAL : XmVERTICAL));
-    XtSetArg (args[1], XmNnumColumns, majorDim);
+    XtSetArg (args[1], XmNnumColumns, m_majorDim);
 
     Widget radioBoxWidget = XmCreateRadioBox (frameWidget, "radioBoxWidget", args, 2);
     m_mainWidget = (WXWidget) radioBoxWidget;