X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/82ef81ed9c797178d9868823097e272bfddc4c93..9151dcec4f51cf7e9c160ede683cc63392459fea:/src/common/utilscmn.cpp diff --git a/src/common/utilscmn.cpp b/src/common/utilscmn.cpp index d3ecc68a97..09369b63f3 100644 --- a/src/common/utilscmn.cpp +++ b/src/common/utilscmn.cpp @@ -119,7 +119,7 @@ wxChar * copystring (const wxChar *s) { - if (s == NULL) s = wxT(""); + if (s == NULL) s = wxEmptyString; size_t len = wxStrlen (s) + 1; wxChar *news = new wxChar[len]; @@ -281,7 +281,7 @@ const wxChar *wxGetInstallPrefix() #ifdef wxINSTALL_PREFIX return wxT(wxINSTALL_PREFIX); #else - return wxT(""); + return wxEmptyString; #endif }