X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7e08bc5acd8ee4e2f0756f50bf98937a118f9951..cc16513e28a9a3084eee4b32529cde19d1760f0d:/include/wx/confbase.h diff --git a/include/wx/confbase.h b/include/wx/confbase.h index ff50f65f4b..e0ed69ff5e 100644 --- a/include/wx/confbase.h +++ b/include/wx/confbase.h @@ -32,13 +32,13 @@ class WXDLLIMPEXP_FWD_BASE wxArrayString; /// separates group and entry names (probably shouldn't be changed) #ifndef wxCONFIG_PATH_SEPARATOR - #define wxCONFIG_PATH_SEPARATOR _T('/') + #define wxCONFIG_PATH_SEPARATOR wxT('/') #endif /// introduces immutable entries // (i.e. the ones which can't be changed from the local config file) #ifndef wxCONFIG_IMMUTABLE_PREFIX - #define wxCONFIG_IMMUTABLE_PREFIX _T('!') + #define wxCONFIG_IMMUTABLE_PREFIX wxT('!') #endif #if wxUSE_CONFIG @@ -217,7 +217,7 @@ public: } #endif // wxHAS_CONFIG_TEMPLATE_RW - // convenience functions returning directly the value + // convenience functions returning directly the value wxString Read(const wxString& key, const wxString& defVal = wxEmptyString) const { wxString s; (void)Read(key, &s, defVal); return s; }