Mercurial > hg > svgui
diff view/View.cpp @ 729:25b3d5802e6e
Fix failure to delete property stack when pane is deleted (sometimes)
author | Chris Cannam |
---|---|
date | Tue, 04 Mar 2014 15:32:28 +0000 |
parents | 1a0dfcbffaf1 |
children | 87512dacc4bd |
line wrap: on
line diff
--- a/view/View.cpp Thu Feb 06 18:34:43 2014 +0000 +++ b/view/View.cpp Tue Mar 04 15:32:28 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() +{ +}