* Deleted debug messages.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1365 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux 1999-01-10 20:16:51 +00:00
parent 7d2946d285
commit 841ad0a4a0

View File

@ -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;