diff framework/MainWindowBase.cpp @ 177:7dae51741cc9

* Fix crash on exit on win32. This was caused by incorrectly using fftw_free() to free the string returned from fftw_export_wisdom_to_string(), instead of plain free(). * Various debug artifacts related to tracking down the above
author Chris Cannam
date Fri, 14 Aug 2009 14:01:09 +0000
parents 366f044c20e4
children 84b2c1a4984a
line wrap: on
line diff
--- a/framework/MainWindowBase.cpp	Thu Jul 16 13:57:18 2009 +0000
+++ b/framework/MainWindowBase.cpp	Fri Aug 14 14:01:09 2009 +0000
@@ -230,6 +230,7 @@
 
 MainWindowBase::~MainWindowBase()
 {
+    std::cerr << "MainWindowBase::~MainWindowBase" << std::endl;
     if (m_playTarget) m_playTarget->shutdown();
 //    delete m_playTarget;
     delete m_playSource;