summaryrefslogtreecommitdiff
path: root/src/designer/src/plugins/activeqt/qaxwidgetpropertysheet.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2023-03-21 15:17:15 +0100
committerMarc Mutz <marc.mutz@qt.io>2023-04-11 09:43:06 +0000
commiteb3e5c9c312a22b61fa951aefea81126e9026f71 (patch)
tree259969716d19cfea1ec24e44a6fb8edade6ef174 /src/designer/src/plugins/activeqt/qaxwidgetpropertysheet.cpp
parentf8d73cf765c9c81d195ccd7e5f4f50574d82e859 (diff)
downloadqttools-eb3e5c9c312a22b61fa951aefea81126e9026f71.tar.gz
Qt Designer: Replace QLatin1String by modern literals
Pick-to: 6.5 Change-Id: I1a76bf2224795275a8c62cf37144936bda87cbca Reviewed-by: Marc Mutz <marc.mutz@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src/designer/src/plugins/activeqt/qaxwidgetpropertysheet.cpp')
-rw-r--r--src/designer/src/plugins/activeqt/qaxwidgetpropertysheet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/designer/src/plugins/activeqt/qaxwidgetpropertysheet.cpp b/src/designer/src/plugins/activeqt/qaxwidgetpropertysheet.cpp
index 53cbd69c4..9c75af8b0 100644
--- a/src/designer/src/plugins/activeqt/qaxwidgetpropertysheet.cpp
+++ b/src/designer/src/plugins/activeqt/qaxwidgetpropertysheet.cpp
@@ -50,7 +50,7 @@ bool QAxWidgetPropertySheet::isEnabled(int index) const
bool QAxWidgetPropertySheet::isVisible(int index) const
{
// classContext is ulong, which the property editor does not support
- return propertyName(index) != QLatin1String("classContext");
+ return propertyName(index) != "classContext"_L1;
}
bool QAxWidgetPropertySheet::dynamicPropertiesAllowed() const