Removed a few old wxDebugMsg (now wxLogDebug)
block first event from wxCeckBox after SetValue() also git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1156 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
#include <wx/zstream.h>
|
||||
#include <wx/utils.h>
|
||||
#include <wx/intl.h>
|
||||
#include "wx/log.h"
|
||||
#include "../zlib/zlib.h" // don't change this, Robert
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
@@ -127,9 +128,9 @@ wxZlibOutputStream::~wxZlibOutputStream()
|
||||
Sync();
|
||||
|
||||
err = deflate(m_deflate, Z_FINISH);
|
||||
if (err != Z_STREAM_END) {
|
||||
wxDebugMsg(_("wxZlibOutputStream: an error occured while we was closing "
|
||||
"the stream.\n"));
|
||||
if (err != Z_STREAM_END)
|
||||
{
|
||||
wxLogDebug( "wxZlibOutputStream: an error occured while closing the stream.\n" );
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user