]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fix for wxUSE_UNICODE=0 build after wxUSE_STL=1 fix.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 10 Nov 2011 11:58:04 +0000 (11:58 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 10 Nov 2011 11:58:04 +0000 (11:58 +0000)
The result of wxString::mb_str() can't be converted to wxScopedCharBuffer in
non-Unicode build but converting it to wxCharBuffer is always fine (though
slightly less efficient).

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

src/xrc/xmlres.cpp

index e0ad8d8515392fea8ce3497c4d77526f36df337d..0afbbcb58861528a2839163a5fad5d8b5e3d7cb3 100644 (file)
@@ -2493,7 +2493,7 @@ static inline unsigned XRCIdHash(const char *str_id)
 
 static void XRCID_Assign(const wxString& str_id, int value)
 {
-    wxScopedCharBuffer buf_id(str_id.mb_str());
+    const wxCharBuffer buf_id(str_id.mb_str());
     const unsigned index = XRCIdHash(buf_id);