]> git.saurik.com Git - wxWidgets.git/commitdiff
fixing build with wxUSE_PROTOCOL = 1 and wxUSE_SOCKETS = 0
authorStefan Csomor <csomor@advancedconcepts.ch>
Wed, 30 May 2012 04:20:59 +0000 (04:20 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Wed, 30 May 2012 04:20:59 +0000 (04:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71604 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/protocol.cpp

index 0173b097b74a1c5f214bd52841b3f14bd321ce2b..5a62be34442606dc6227182e6892fce4160f47ce 100644 (file)
@@ -72,6 +72,19 @@ wxProtocol::wxProtocol()
     SetDefaultTimeout(60);      // default timeout is 60 seconds
 }
 
+void wxProtocol::SetDefaultTimeout(wxUint32 Value)
+{
+    m_uiDefaultTimeout = Value;
+#if wxUSE_SOCKETS
+    wxSocketBase::SetTimeout(Value); // sets it for this socket
+#endif
+}
+
+wxProtocol::~wxProtocol()
+{
+    delete m_log;
+}
+
 #if wxUSE_SOCKETS
 bool wxProtocol::Reconnect()
 {
@@ -92,19 +105,6 @@ bool wxProtocol::Reconnect()
     return true;
 }
 
-void wxProtocol::SetDefaultTimeout(wxUint32 Value)
-{
-    m_uiDefaultTimeout = Value;
-#if wxUSE_SOCKETS
-    wxSocketBase::SetTimeout(Value); // sets it for this socket
-#endif
-}
-
-wxProtocol::~wxProtocol()
-{
-    delete m_log;
-}
-
 // ----------------------------------------------------------------------------
 // Read a line from socket
 // ----------------------------------------------------------------------------