@@ -53,7 +53,7 @@ KsGLWidget::KsGLWidget(QWidget *parent)
setMouseTracking(true);
connect(&_model, &QAbstractTableModel::modelReset,
- this, &KsGLWidget::update);
+ this, qOverload<>(&KsGLWidget::update));
}
void KsGLWidget::_freeGraphs()
@@ -89,7 +89,7 @@ void KsGLWidget::initializeGL()
ksplot_init_font(&_font, 15, TT_FONT_FILE);
_labelSize = _getMaxLabelSize() + FONT_WIDTH * 2;
- update();
+ updateGeom();
}
/**
@@ -86,7 +86,7 @@ public:
void reset();
/** Reprocess all graphs. */
- void update() {resizeGL(width(), height());}
+ void updateGeom() {resizeGL(width(), height());}
void mousePressEvent(QMouseEvent *event);
@@ -614,7 +614,7 @@ void KsTraceGraph::updateGeom()
* widget is extended to maximum.
*/
- _glWindow.update();
+ _glWindow.updateGeom();
}
/**
Fix segfault introduced by the migration to Qt6. There was a public update() function in KsGLWidget class which overrides QWidget::update(). The QAbstractTableModel::modelReset signal was connected to the QWidget::update slot using "old" connect syntax. This was working since QWidget::update was declared as a slot, and registered in QWidget meta information. When migrating to Qt6, the new connect syntax was used, which accidentally connect the KsGLWidget::update function instead of QWidget::update. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=218350 Signed-off-by: Benjamin ROBIN <dev@benjarobin.fr> --- src/KsGLWidget.cpp | 4 ++-- src/KsGLWidget.hpp | 2 +- src/KsTraceGraph.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-)