From: Guilhem Lavaux Date: Sun, 10 Jan 1999 20:16:51 +0000 (+0000) Subject: * Deleted debug messages. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/841ad0a4a06b03c349cd44e433a1d309fc038d56?ds=inline * Deleted debug messages. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1365 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/stream.cpp b/src/common/stream.cpp index b7f8f3931d..728d50b5cf 100644 --- a/src/common/stream.cpp +++ b/src/common/stream.cpp @@ -158,8 +158,6 @@ char *wxStreamBuffer::AllocSpaceWBack(size_t needed_size) return NULL; m_wback = temp_b; - /* printf("Buffer(0x%x)->Write: 0x%x, %d\n", this, m_wback, m_wbacksize); */ - return (char *)(m_wback+(m_wbacksize-needed_size)); } @@ -167,8 +165,6 @@ size_t wxStreamBuffer::GetWBack(char *buf, size_t bsize) { size_t s_toget = m_wbacksize-m_wbackcur; - /* printf("Buffer(0x%x): 0x%x, %d\n", this, m_wback, m_wbacksize); */ - if (bsize < s_toget) s_toget = bsize;