Mercurial > hg > svgui
diff view/View.cpp @ 728:596414d20ef0 tonioni
Fix failure to delete property stack when pane is deleted (sometimes). Fixes Tony crash bug #881, needs to go in SV as well.
author | Chris Cannam |
---|---|
date | Tue, 04 Mar 2014 15:28:32 +0000 |
parents | 1a0dfcbffaf1 |
children | 87512dacc4bd |
line wrap: on
line diff
--- a/view/View.cpp Mon Feb 24 17:04:48 2014 -0500 +++ b/view/View.cpp Tue Mar 04 15:28:32 2014 +0000 @@ -64,12 +64,12 @@ m_manager(0), m_propertyContainer(new ViewPropertyContainer(this)) { - SVDEBUG << "View::View(" << this << ")" << endl; +// cerr << "View::View(" << this << ")" << endl; } View::~View() { -// SVDEBUG << "View::~View(" << this << ")" << endl; +// cerr << "View::~View(" << this << ")" << endl; m_deleting = true; delete m_propertyContainer; @@ -2407,7 +2407,11 @@ ViewPropertyContainer::ViewPropertyContainer(View *v) : m_v(v) { +// cerr << "ViewPropertyContainer: " << this << " is owned by View " << v << endl; connect(m_v, SIGNAL(propertyChanged(PropertyContainer::PropertyName)), this, SIGNAL(propertyChanged(PropertyContainer::PropertyName))); } +ViewPropertyContainer::~ViewPropertyContainer() +{ +}