]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/protocol.cpp
delete the .pyc files before making a preview
[wxWidgets.git] / src / common / protocol.cpp
index c3f0c1e4b4dd8139b65ea092f44ab41958b7f996..8d83bc6dbbde786c0f7bdeec26ad3f469b1edc60 100644 (file)
@@ -9,7 +9,7 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "protocol.h"
 #endif
 
@@ -40,9 +40,9 @@
 
 wxProtoInfo::wxProtoInfo(const wxChar *name, const wxChar *serv,
                          const bool need_host1, wxClassInfo *info)
+           : m_protoname(name),
+             m_servname(serv)
 {
-    m_protoname = name;
-    m_servname = serv;
     m_cinfo = info;
     m_needhost = need_host1;
     next = wxURL::ms_protocols;