Kaydet (Commit) 2f31a4c1 authored tarafından Michael Meeks's avatar Michael Meeks

tdf#92213 - avoid potential crasher from unusual idle handler.

Change-Id: Id5715f8753d17b3955ac87b9260318ac56e64a08
üst 14323c74
...@@ -90,14 +90,19 @@ GraphCtrl::~GraphCtrl() ...@@ -90,14 +90,19 @@ GraphCtrl::~GraphCtrl()
void GraphCtrl::dispose() void GraphCtrl::dispose()
{ {
aUpdateIdle.Stop();
if( mpAccContext ) if( mpAccContext )
{ {
mpAccContext->disposing(); mpAccContext->disposing();
mpAccContext->release(); mpAccContext->release();
} }
delete pView; delete pView;
pView = NULL;
delete pModel; delete pModel;
pModel = NULL;
delete pUserCall; delete pUserCall;
pUserCall = NULL;
Control::dispose(); Control::dispose();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment