Details
-
Bug
-
Resolution: Unresolved
-
P1: Critical
-
None
-
5.15.2
-
None
-
windows 10 professional 21H1
OS inner version 19043.1083
Qt 5.15.2 msvc2019_64
Description
result:
QWindow *QAccessibleWidget::window() const { const QWidget *w = widget(); Q_ASSERT(w); QWindow *result = w->windowHandle(); if (!result) { if (const QWidget *nativeParent = w->nativeParentWidget()) result = nativeParent->windowHandle(); } return result; }
this code crash, in release mode assert no effect, but 'w' is NULL .
scene descript:
When i click a "Qml Button" , i need to create and show a QWidget dialog.
QWidget dialog has some QLabel on .ui files, construct Dialog will call setupUI,
lead to call retranslateUi, QLabel::setText, then call
QAccessible::updateAccessibility with "NameChanged" QAccessibleEvent,
then QAccessibleWidget crash.
here is call stack
Attachments
Issue Links
- is duplicated by
-
QTBUG-95135 QLabel::setText lead to QAccessibleWidget crash
-
- Closed
-
- relates to
-
QTBUG-95135 QLabel::setText lead to QAccessibleWidget crash
-
- Closed
-
-
QTBUG-115161 Crash in QAccessibleComboBox::focusChild()
-
- Closed
-