From 8b1632ebe75d745e901421d4e23cb165fd30950b Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Sat, 9 Nov 2002 10:53:27 +0000 Subject: [PATCH] UNicode compile fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17775 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/sckaddr.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/sckaddr.cpp b/src/common/sckaddr.cpp index 4133715628..b75ac6efb5 100644 --- a/src/common/sckaddr.cpp +++ b/src/common/sckaddr.cpp @@ -268,7 +268,8 @@ wxString wxUNIXaddress::Filename() path[0] = 0; GAddress_UNIX_GetPath(m_address, path, 1024); - return wxString(path); + + return wxString::FromAscii(path); } #endif // __UNIX__