]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/strvararg.cpp
escape _ in LaTeX sources
[wxWidgets.git] / src / common / strvararg.cpp
index e3435e67133fb9c69c72199bcc53051e6a4e8150..00e30cbf845aa6890f8625331c4bf0494e7e02d1 100644 (file)
 // implementation
 // ============================================================================
 
-const wxArgNativeCharType *wxArgNormalizer<const wxCStrData&>::get() const
+const wxStringCharType *wxArgNormalizer<const wxCStrData&>::get() const
 {
     return m_value;
 }
 
-const wxArgNativeCharType *wxArgNormalizer<const wxString&>::get() const
+const wxStringCharType *wxArgNormalizer<const wxString&>::get() const
 {
-    return m_value.c_str();
+    return m_value.wx_str();
 }
 
 #if wxUSE_UNICODE_WCHAR