Mercurial > hg > svgui
changeset 454:e2a40fdadd8c
Various fixes:
* Fix handling of HTTP redirects (avoiding crashes... I hope)
* Fix failure to delete FFT models when a feature extraction model
transformer was abandoned (also a cause of crashes in the past)
* Fix deadlock when said transform was abandoned before its source
model was ready because the session was being cleared (and so the
source model would never be ready)
author | Chris Cannam |
---|---|
date | Fri, 28 Nov 2008 13:36:13 +0000 |
parents | 7bec0807d7ba |
children | 747a58d45d56 |
files | widgets/PropertyBox.cpp |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/widgets/PropertyBox.cpp Fri Nov 21 13:37:35 2008 +0000 +++ b/widgets/PropertyBox.cpp Fri Nov 28 13:36:13 2008 +0000 @@ -51,7 +51,7 @@ #include <iostream> #include <cmath> -//#define DEBUG_PROPERTY_BOX 1 +#define DEBUG_PROPERTY_BOX 1 PropertyBox::PropertyBox(PropertyContainer *container) : m_container(container), @@ -558,6 +558,7 @@ void PropertyBox::unitDatabaseChanged() { + std::cerr << "PropertyBox[" << this << "]: unitDatabaseChanged" << std::endl; blockSignals(true); PropertyContainer::PropertyList properties = m_container->getProperties();