From kde-commits Sat Oct 23 11:42:53 2004 From: Dag Andersen Date: Sat, 23 Oct 2004 11:42:53 +0000 To: kde-commits Subject: kdepim/kdgantt Message-Id: <20041023114253.5DE2C16C48 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=109853178003798 CVS commit by danders: This closes memory leak because KDTimeTableWidget was not deleted. It's a bit tricky because (at least) KDListView calls KDTimeTableWidget through the KDGanttViewItems d'tors. M +2 -2 KDGanttView.cpp 1.12 --- kdepim/kdgantt/KDGanttView.cpp #1.11:1.12 @@ -109,5 +109,5 @@ KDGanttView::KDGanttView( QWidget* paren //connect( myListView, SIGNAL( ), this, SLOT( ) ); - myTimeTable = new KDTimeTableWidget (0,this); + myTimeTable = new KDTimeTableWidget (rightWidget,this); spacerRight = new QWidget( rightWidget );