]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ftp.cpp
1. fixed (to test) the bug with bitmaps without masks in wxImageList
[wxWidgets.git] / src / common / ftp.cpp
index a47d3a7b27c615561bf2c73dca7b890145dbaa06..70e4e9a688e42d2508bbb2409724407362e59bc2 100644 (file)
 
 #define FTP_BSIZE 1024
 
-#if !USE_SHARED_LIBRARY
 IMPLEMENT_DYNAMIC_CLASS(wxFTP, wxProtocol)
 IMPLEMENT_PROTOCOL(wxFTP, wxT("ftp"), wxT("ftp"), TRUE)
-#endif
 
 ////////////////////////////////////////////////////////////////
 ////// wxFTP constructor and destructor ////////////////////////
@@ -65,7 +63,7 @@ wxFTP::wxFTP()
 
   m_user = wxT("anonymous");
   m_passwd = wxGetUserId();
-  m_passwd += '@';
+  m_passwd += wxT('@');
   m_passwd += wxGetHostName();
 
   SetNotify(0);