From 02de8353775d2ce9e7ba0cbb76bd2e92daa934c7 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 16 May 2014 04:15:32 +1000 Subject: [PATCH] Fix shutdown crash in gGraphView (QTBUG-35363) --- sleepyhead/Graphs/gGraphView.cpp | 23 +++++++++++++---------- sleepyhead/Graphs/gGraphView.h | 2 ++ 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index d14c3135..698bae50 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -297,14 +297,24 @@ gGraphView::gGraphView(QWidget *parent, gGraphView *shared) m_dpr = 1; #endif } - -gGraphView::~gGraphView() +void gGraphView::closeEvent(QCloseEvent * event) { timer->stop(); redrawtimer->stop(); - disconnect(redrawtimer, 0, 0, 0); disconnect(timer, 0, 0, 0); + timer->deleteLater(); + redrawtimer->deleteLater(); + pixmapcache.clear(); + if (m_scrollbar) { + this->disconnect(m_scrollbar, SIGNAL(sliderMoved(int)), 0, 0); + } + +} + +gGraphView::~gGraphView() +{ + doneCurrent(); #ifdef ENABLE_THREADED_DRAWING @@ -323,13 +333,6 @@ gGraphView::~gGraphView() delete m_tooltip; m_graphs.clear(); - - if (m_scrollbar) { - this->disconnect(m_scrollbar, SIGNAL(sliderMoved(int)), 0, 0); - } - - delete timer; - delete redrawtimer; } bool gGraphView::usePixmapCache() diff --git a/sleepyhead/Graphs/gGraphView.h b/sleepyhead/Graphs/gGraphView.h index 33802398..dd6211d9 100644 --- a/sleepyhead/Graphs/gGraphView.h +++ b/sleepyhead/Graphs/gGraphView.h @@ -176,6 +176,8 @@ class gGraphView : public QGLWidget */ explicit gGraphView(QWidget *parent = 0, gGraphView *shared = 0); virtual ~gGraphView(); + virtual void closeEvent(QCloseEvent * event); + //! \brief Add gGraph g to this gGraphView, in the requested graph-linkage group void addGraph(gGraph *g, short group = 0);