fix for HP and IBM compilers, calls to static template functions must be qualified

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48842 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2007-09-21 02:39:08 +00:00
parent 043c67059f
commit 8fd7108e7c
2 changed files with 3 additions and 3 deletions

View File

@@ -558,7 +558,7 @@ static CharType *wxDoExpandPath(CharType *buf, const wxString& name)
buf[0] = wxT('\0');
if (name.empty())
return buf;
nm = MYcopystring((const CharType*)name.c_str()); // Make a scratch copy
nm = ::MYcopystring(static_cast<const CharType*>(name.c_str())); // Make a scratch copy
CharType *nm_tmp = nm;
/* Skip leading whitespace and cr */