# HG changeset patch # User Chris Cannam # Date 1227879373 0 # Node ID e2a40fdadd8c4ad2e142f7b8599bbcd15d55a4b4 # Parent 7bec0807d7ba5a9f65310ecc26cbfd7fbc75fd5b 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) diff -r 7bec0807d7ba -r e2a40fdadd8c widgets/PropertyBox.cpp --- 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 #include -//#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();