X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/874dbd3a4a318bd7f34548b84cfe0aed9efa42d5..005ac806ead92411ad4810d407df311e4a608302:/include/wx/wxcrt.h diff --git a/include/wx/wxcrt.h b/include/wx/wxcrt.h index a348b14711..aa398aea5f 100644 --- a/include/wx/wxcrt.h +++ b/include/wx/wxcrt.h @@ -82,7 +82,7 @@ inline bool wxIsEmpty(const wxCStrData& s) { return s.AsString().empty(); } for(;l && *s != c;--l, ++s) {} if(l) - return (wxChar*)s; + return const_cast(s); return NULL; } @@ -471,17 +471,21 @@ WX_STRCMP_FUNC(wxStricmp, wxCRT_StricmpA, wxCRT_StricmpW, wxStricmp_String) #if defined(wxCRT_StrcollA) && defined(wxCRT_StrcollW) -// GCC 3.3 and other compilers have a bug that causes it to fail compilation if +// GCC 3.4 and other compilers have a bug that causes it to fail compilation if // the template's implementation uses overloaded function declared later (see // the wxStrcoll() call in wxStrcoll_String()), so we have to // forward-declare the template and implement it below WX_STRCMP_FUNC. OTOH, // this fails to compile with VC6, so don't do it for VC. It also causes // problems with GCC visibility in newer GCC versions. -#if !(defined(__VISUALC__) || wxCHECK_GCC_VERSION(3,4)) +#if !(defined(__VISUALC__) || wxCHECK_GCC_VERSION(3,5)) + #define wxNEEDS_DECL_BEFORE_TEMPLATE +#endif + +#ifdef wxNEEDS_DECL_BEFORE_TEMPLATE template inline int wxStrcoll_String(const wxString& s1, const T& s2); WX_STRCMP_FUNC(wxStrcoll, wxCRT_StrcollA, wxCRT_StrcollW, wxStrcoll_String) -#endif // !__VISUALC__ +#endif // wxNEEDS_DECL_BEFORE_TEMPLATE template inline int wxStrcoll_String(const wxString& s1, const T& s2) @@ -497,8 +501,9 @@ inline int wxStrcoll_String(const wxString& s1, const T& s2) #endif } -#if defined(__VISUALC__) || wxCHECK_GCC_VERSION(3,4) -// this is exactly the same WX_STRCMP_FUNC line as above wxStrcoll_String<> +#ifndef wxNEEDS_DECL_BEFORE_TEMPLATE +// this is exactly the same WX_STRCMP_FUNC line as above, insde the +// wxNEEDS_DECL_BEFORE_TEMPLATE case WX_STRCMP_FUNC(wxStrcoll, wxCRT_StrcollA, wxCRT_StrcollW, wxStrcoll_String) #endif @@ -656,13 +661,13 @@ inline const char* wxStrchr(const wxString& s, int c) inline const char* wxStrrchr(const wxString& s, int c) { return wxCRT_StrrchrA((const char*)s.c_str(), c); } inline const char* wxStrchr(const wxString& s, const wxUniChar& uc) - { char c; return uc.GetAsChar(&c) ? wxCRT_StrchrA(s, c) : NULL; } + { char c; return uc.GetAsChar(&c) ? wxCRT_StrchrA(s.c_str(), c) : NULL; } inline const char* wxStrrchr(const wxString& s, const wxUniChar& uc) - { char c; return uc.GetAsChar(&c) ? wxCRT_StrrchrA(s, c) : NULL; } + { char c; return uc.GetAsChar(&c) ? wxCRT_StrrchrA(s.c_str(), c) : NULL; } inline const char* wxStrchr(const wxString& s, const wxUniCharRef& uc) - { char c; return uc.GetAsChar(&c) ? wxCRT_StrchrA(s, c) : NULL; } + { char c; return uc.GetAsChar(&c) ? wxCRT_StrchrA(s.c_str(), c) : NULL; } inline const char* wxStrrchr(const wxString& s, const wxUniCharRef& uc) - { char c; return uc.GetAsChar(&c) ? wxCRT_StrrchrA(s, c) : NULL; } + { char c; return uc.GetAsChar(&c) ? wxCRT_StrrchrA(s.c_str(), c) : NULL; } inline const wchar_t* wxStrchr(const wxString& s, wchar_t c) { return wxCRT_StrchrW((const wchar_t*)s.c_str(), c); } inline const wchar_t* wxStrrchr(const wxString& s, wchar_t c) @@ -724,30 +729,30 @@ inline const T *wxStrpbrk(const S& s, const wxScopedCharTypeBuffer& accept) /* inlined non-const versions */ template inline char *wxStrstr(char *haystack, T needle) - { return (char *)wxStrstr((const char *)haystack, needle); } + { return const_cast(wxStrstr(const_cast(haystack), needle)); } template inline wchar_t *wxStrstr(wchar_t *haystack, T needle) - { return (wchar_t *)wxStrstr((const wchar_t *)haystack, needle); } + { return const_cast(wxStrstr(const_cast(haystack), needle)); } template inline char * wxStrchr(char *s, T c) - { return (char *)wxStrchr((const char *)s, c); } + { return const_cast(wxStrchr(const_cast(s), c)); } template inline wchar_t * wxStrchr(wchar_t *s, T c) { return (wchar_t *)wxStrchr((const wchar_t *)s, c); } template inline char * wxStrrchr(char *s, T c) - { return (char *)wxStrrchr((const char *)s, c); } + { return const_cast(wxStrrchr(const_cast(s), c)); } template inline wchar_t * wxStrrchr(wchar_t *s, T c) - { return (wchar_t *)wxStrrchr((const wchar_t *)s, c); } + { return const_cast(wxStrrchr(const_cast(s), c)); } template inline char * wxStrpbrk(char *s, T accept) - { return (char *)wxStrpbrk((const char *)s, accept); } + { return const_cast(wxStrpbrk(const_cast(s), accept)); } template inline wchar_t * wxStrpbrk(wchar_t *s, T accept) - { return (wchar_t *)wxStrpbrk((const wchar_t *)s, accept); } + { return const_cast(wxStrpbrk(const_cast(s), accept)); } // ---------------------------------------------------------------------------- @@ -987,4 +992,6 @@ wxDEPRECATED( inline int wxIsctrl(const wxUniChar& c) ); inline int wxIsctrl(const wxUniChar& c) { return wxIscntrl(c); } #endif // WXWIN_COMPATIBILITY_2_8 +inline bool wxIsascii(const wxUniChar& c) { return c.IsAscii(); } + #endif /* _WX_WXCRT_H_ */