]> git.saurik.com Git - wxWidgets.git/commitdiff
don't duplicate SetInitialSocketBuffers()
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 23 Nov 2008 13:21:11 +0000 (13:21 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 23 Nov 2008 13:21:11 +0000 (13:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gsocket.h
include/wx/msw/gsockmsw.h
include/wx/unix/gsockunx.h

index d2fc0d07dd079738f276f66610964fe727780e81..e8a0338dea65700a8ffe26346020b621bc769e50 100644 (file)
@@ -179,6 +179,12 @@ public:
     virtual void Close() = 0;
     virtual void Shutdown();
 
+    void SetInitialSocketBuffers(int recv, int send)
+    {
+        m_initialRecvBufferSize = recv;
+        m_initialSendBufferSize = send;
+    }
+
     // notify m_wxsocket about the given socket event by calling its (inaptly
     // named) OnRequest() method
     void NotifyOnStateChange(GSocketEvent event);
index 50fd92c1381b98030661f39d4a96ecbf506fe3ca..d7d256a36d434b5278f549879fec2ca5cd7593b6 100644 (file)
@@ -60,12 +60,6 @@ public:
   GSocketError SetSockOpt(int level, int optname,
     const void *optval, int optlen);
 
-  void SetInitialSocketBuffers(int recv, int send)
-  {
-      m_initialRecvBufferSize = recv;
-      m_initialSendBufferSize = send;
-  }
-
 protected:
   GSocketError Input_Timeout();
   GSocketError Output_Timeout();
index 8bf15cad8978cd7a6f41e48328ed01104698dbc5..d90bb540b7145fa93f035536065f0298f69025cf 100644 (file)
@@ -44,11 +44,6 @@ public:
     void Notify(bool flag);
     void Detected_Read();
     void Detected_Write();
-    void SetInitialSocketBuffers(int recv, int send)
-    {
-        m_initialRecvBufferSize = recv;
-        m_initialSendBufferSize = send;
-    }
 
 protected:
     //enable or disable event callback using gsocket gui callback table