another compilation fix for wxStrlcpy use in STL Unicode build

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57080 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2008-12-02 22:24:18 +00:00
parent 0e0134acea
commit 9d4943cdb2

View File

@ -436,7 +436,7 @@ bool wxGetEmailAddress(wxChar *address, int maxSize)
if ( !email )
return false;
wxStrlcpy(address, email, maxSize);
wxStrlcpy(address, email.t_str(), maxSize);
return true;
}