diff options
| author | Olivier Goffart <[email protected]> | 2019-12-06 13:19:37 +0100 |
|---|---|---|
| committer | Olivier Goffart <[email protected]> | 2019-12-15 12:30:52 +0100 |
| commit | d6266c757d2f2ea4ff1e71dc8545f9bf97aa3bb1 (patch) | |
| tree | 37fff2c5d030728d65072b0d036b7e78fde058a5 /src/widgets/dialogs/qdialog.cpp | |
| parent | 127533637e4ff4d3301fe02c88a2a506dd24c199 (diff) | |
Replace usages of QVariant::value by qvariant_cast
This is done automatically with a clazy check
Change-Id: I3b59511d3d36d416c8eda74858ead611d327b116
Reviewed-by: Lars Knoll <[email protected]>
Diffstat (limited to 'src/widgets/dialogs/qdialog.cpp')
| -rw-r--r-- | src/widgets/dialogs/qdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/dialogs/qdialog.cpp b/src/widgets/dialogs/qdialog.cpp index 362200a4fd8..906022a1857 100644 --- a/src/widgets/dialogs/qdialog.cpp +++ b/src/widgets/dialogs/qdialog.cpp @@ -920,7 +920,7 @@ void QDialog::adjustPosition(QWidget* w) if (w) { // Use pos() if the widget is embedded into a native window QPoint pp; - if (w->windowHandle() && w->windowHandle()->property("_q_embedded_native_parent_handle").value<WId>()) + if (w->windowHandle() && qvariant_cast<WId>(w->windowHandle()->property("_q_embedded_native_parent_handle"))) pp = w->pos(); else pp = w->mapToGlobal(QPoint(0,0)); |
