mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Fix shutdown crash in gGraphView (QTBUG-35363)
This commit is contained in:
parent
f0356ee99c
commit
02de835377
@ -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()
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user