]> git.saurik.com Git - wxWidgets.git/commitdiff
more non-const string literal warnings correction
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 14 Sep 2005 14:21:16 +0000 (14:21 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 14 Sep 2005 14:21:16 +0000 (14:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35505 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/motif/msgdlg.cpp
src/motif/radiobox.cpp
src/motif/textctrl.cpp

index 63ea92e899dcc314031d0ac52ba5b31441c16550..6611b48b272dee46bd25783e0cb0a5d3ecac2f49 100644 (file)
@@ -185,7 +185,7 @@ int wxMessageDialog::ShowModal()
 
     // do create message box
 
-    Widget wMsgBox = (*dialogCreateFunction)(wParent, "", args, ac);
+    Widget wMsgBox = (*dialogCreateFunction)(wParent, wxMOTIF_STR(""), args, ac);
 
     wxCHECK_MSG( wMsgBox, wxID_CANCEL, "msg box creation failed" );
 
index 0788c3a6864fe1eef55b51fbce44436fbbb269d1..e10823aa4b5a3d1c80cef7a504038e533c7728ce 100644 (file)
@@ -119,7 +119,7 @@ bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& title,
     XtSetArg (args[2], XmNadjustLast, False);
 
     Widget radioBoxWidget =
-        XmCreateRadioBox ((Widget)m_mainWidget, "radioBoxWidget", args, 3);
+        XmCreateRadioBox ((Widget)m_mainWidget, wxMOTIF_STR("radioBoxWidget"), args, 3);
 
     m_radioButtons.reserve(n);
     m_radioButtonLabels.reserve(n);
index f3c688fd4cf472a585d3bab290c34208ec180e90..4e9b4655cb4a20bd1a9b80a906405f639de19c28 100644 (file)
@@ -407,7 +407,7 @@ void wxTextCtrl::AppendText(const wxString& text)
 
 void wxTextCtrl::Clear()
 {
-    XmTextSetString ((Widget) m_mainWidget, "");
+    XmTextSetString ((Widget) m_mainWidget, wxMOTIF_STR(""));
     m_modified = false;
 }
 
@@ -661,12 +661,13 @@ wxSize wxDoGetSingleTextCtrlBestSize( Widget textWidget,
                    NULL );
 
     if( !value )
-        value = "|";
+        value = wxMOTIF_STR("|");
 
     int x, y;
     window->GetTextExtent( value, &x, &y );
 
-    if( x < 100 ) x = 100;
+    if( x < 100 )
+        x = 100;
 
     return wxSize( x + 2 * xmargin + 2 * highlight + 2 * shadow,
                    // MBN: +2 necessary: Lesstif bug or mine?