don't display debug message in no-debug builds

This commit is contained in:
Robin Gareus 2014-02-03 16:54:07 +01:00
parent 591ff9ceb6
commit 57f59025d7
1 changed files with 2 additions and 0 deletions

View File

@ -161,7 +161,9 @@ PluginUIWindow::PluginUIWindow (
PluginUIWindow::~PluginUIWindow ()
{
#ifdef NDEBUG
cerr << "PluginWindow deleted for " << this << endl;
#endif
delete _pluginui;
}