Fix bool comparison in tst_qopenglwidget.cpp

This commit amends 1ea73bc29b

Pick-to: 6.2 6.3 6.4
Change-Id: I02000f86ff030ad369ccef1d4488ad22558eb974
Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
This commit is contained in:
Peter Varga 2022-10-20 16:27:59 +02:00
parent 6c2387571a
commit 55449a6528

View File

@ -679,7 +679,7 @@ void tst_QOpenGLWidget::stackWidgetOpaqueChildIsVisible()
// Switch to the QOpenGLWidget.
stack.setCurrentIndex(1);
QTRY_COMPARE(clearWidget->m_paintCalled, true);
QTRY_VERIFY(clearWidget->m_paintCalled);
// Resize the tested region to be half size in the middle, because some OSes make the widget
// have rounded corners (e.g. OSX), and the grabbed window pixmap will not coincide perfectly
@ -787,10 +787,10 @@ void tst_QOpenGLWidget::paintWhileHidden()
// on-screen at the point when update() is called.
w->setVisible(false);
w->m_paintCalled = 0;
w->m_paintCalled = false;
w->update();
w->setVisible(true);
QTRY_VERIFY(w->m_paintCalled > 0);
QTRY_VERIFY(w->m_paintCalled);
}
void tst_QOpenGLWidget::widgetWindowColorFormat_data()