]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/intl.cpp
overload operator<<() for wchar_t too (if applicable/possible); this fixes the proble...
[wxWidgets.git] / src / common / intl.cpp
index 66107d6fa75a88630450cabb14c1f9a6cd6ee0e0..ac1b779ea411572368b772a16507a3b8623ba5b0 100644 (file)
@@ -2505,7 +2505,7 @@ const wxChar *wxLocale::GetString(const wxChar *szOrigString,
 wxString wxLocale::GetHeaderValue( const wxChar* szHeader,
                                    const wxChar* szDomain ) const
 {
-    if ( wxIsEmpty(Header) )
+    if ( wxIsEmpty(szHeader) )
         return wxEmptyString;
 
     wxChar const * pszTrans = NULL;
@@ -2535,11 +2535,11 @@ wxString wxLocale::GetHeaderValue( const wxChar* szHeader,
     if ( wxIsEmpty(pszTrans) )
       return wxEmptyString;
 
-    wxChar const * pszFound = wxStrstr(pszTrans, Header);
+    wxChar const * pszFound = wxStrstr(pszTrans, szHeader);
     if ( pszFound == NULL )
       return wxEmptyString;
     
-    pszFound += wxStrlen(Header) + 2 /* ': ' */;
+    pszFound += wxStrlen(szHeader) + 2 /* ': ' */;
 
     // Every header is separated by \n