]> git.saurik.com Git - wxWidgets.git/commitdiff
Compiler warning in non-Unicode mode fixed.
authorOve Kaaven <ovek@arcticnet.no>
Thu, 15 Apr 1999 14:51:31 +0000 (14:51 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Thu, 15 Apr 1999 14:51:31 +0000 (14:51 +0000)
(No, does not fix a real problem, the library is still compiling here)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2180 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/menu.cpp
src/gtk1/menu.cpp

index 44dcd1ba046a0d15e1e5fa2f30b08f5ca2dddc15..d2df6c95f68fe2475d44174c18c6e95e9521fa7e 100644 (file)
@@ -532,7 +532,7 @@ void wxMenu::Append( int id, const wxString &item, const wxString &helpStr, bool
     wxStrcpy( buf, _T("/") );
     wxStrcat( buf, text );
     
-    wxWX2MBbuf pbuf = wxConv_current->cWX2MB(buf);
+    const wxWX2MBbuf pbuf = wxConv_current->cWX2MB(buf);
     GtkItemFactoryEntry entry;
     entry.path = MBSTRINGCAST pbuf;
     entry.accelerator = (gchar*) NULL;
index 44dcd1ba046a0d15e1e5fa2f30b08f5ca2dddc15..d2df6c95f68fe2475d44174c18c6e95e9521fa7e 100644 (file)
@@ -532,7 +532,7 @@ void wxMenu::Append( int id, const wxString &item, const wxString &helpStr, bool
     wxStrcpy( buf, _T("/") );
     wxStrcat( buf, text );
     
-    wxWX2MBbuf pbuf = wxConv_current->cWX2MB(buf);
+    const wxWX2MBbuf pbuf = wxConv_current->cWX2MB(buf);
     GtkItemFactoryEntry entry;
     entry.path = MBSTRINGCAST pbuf;
     entry.accelerator = (gchar*) NULL;