projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixes to previous commit
[wxWidgets.git]
/
src
/
common
/
sckaddr.cpp
diff --git
a/src/common/sckaddr.cpp
b/src/common/sckaddr.cpp
index 1cfa463c864d003b59bb953329dde1ea8083500c..66d12c2bd1da272f46e300bcdecdc5b4bd1d1fa6 100644
(file)
--- a/
src/common/sckaddr.cpp
+++ b/
src/common/sckaddr.cpp
@@
-6,7
+6,7
@@
// Created: 26/04/97
// RCS-ID: $Id$
// Copyright: (c) 1997, 1998 Guilhem Lavaux
// Created: 26/04/97
// RCS-ID: $Id$
// Copyright: (c) 1997, 1998 Guilhem Lavaux
-// Licence: wxWindows licen
s
e
+// Licence: wxWindows licen
c
e
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
@@
-46,7
+46,7
@@
IMPLEMENT_DYNAMIC_CLASS(wxIPV4address, wxSockAddress)
#ifdef ENABLE_IPV6
IMPLEMENT_DYNAMIC_CLASS(wxIPV6address, wxSockAddress)
#endif
#ifdef ENABLE_IPV6
IMPLEMENT_DYNAMIC_CLASS(wxIPV6address, wxSockAddress)
#endif
-#if defined(__UNIX__) && !defined(__W
XMAC__
)
+#if defined(__UNIX__) && !defined(__W
INE__) && (!defined(__WXMAC__) || defined(__DARWIN__)
)
IMPLEMENT_DYNAMIC_CLASS(wxUNIXaddress, wxSockAddress)
#endif
IMPLEMENT_DYNAMIC_CLASS(wxUNIXaddress, wxSockAddress)
#endif
@@
-71,6
+71,7
@@
wxSockAddress::wxSockAddress()
}
wxSockAddress::wxSockAddress(const wxSockAddress& other)
}
wxSockAddress::wxSockAddress(const wxSockAddress& other)
+ : wxObject()
{
Init();
{
Init();
@@
-135,7
+136,7
@@
bool wxIPV4address::Hostname(unsigned long addr)
if (rv)
m_origHostname = Hostname();
else
if (rv)
m_origHostname = Hostname();
else
- m_origHostname =
""
;
+ m_origHostname =
wxEmptyString
;
return rv;
}
return rv;
}
@@
-165,7
+166,7
@@
wxString wxIPV4address::Hostname()
hostname[0] = 0;
GAddress_INET_GetHostName(m_address, hostname, 1024);
hostname[0] = 0;
GAddress_INET_GetHostName(m_address, hostname, 1024);
- return wxString(hostname);
+ return wxString
::FromAscii
(hostname);
}
unsigned short wxIPV4address::Service()
}
unsigned short wxIPV4address::Service()
@@
-236,7
+237,7
@@
unsigned short wxIPV6address::Service()
#endif // 0
#endif // 0
-#if defined(__UNIX__) && !defined(__W
XMAC__
)
+#if defined(__UNIX__) && !defined(__W
INE__) && (!defined(__WXMAC__) || defined(__DARWIN__)
)
// ---------------------------------------------------------------------------
// wxUNIXaddress
// ---------------------------------------------------------------------------
// wxUNIXaddress
@@
-267,7
+268,8
@@
wxString wxUNIXaddress::Filename()
path[0] = 0;
GAddress_UNIX_GetPath(m_address, path, 1024);
path[0] = 0;
GAddress_UNIX_GetPath(m_address, path, 1024);
- return wxString(path);
+
+ return wxString::FromAscii(path);
}
#endif // __UNIX__
}
#endif // __UNIX__