summaryrefslogtreecommitdiffstats
path: root/src/dbus/qdbusabstractadaptor_p.h
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2022-04-08 17:43:08 +0200
committerSona Kurazyan <sona.kurazyan@qt.io>2022-04-12 11:48:08 +0200
commit9662c7da8f09b6cfa071f4e1cbf4973af3a540a3 (patch)
tree87dace584b4ac1380537f6fe0e52fb1871cdbc90 /src/dbus/qdbusabstractadaptor_p.h
parente9e43bff2933937eda873ed549e27f909a3b00b7 (diff)
QtDBus: replace remaining uses of QLatin1String with QLatin1StringView
Task-number: QTBUG-98434 Change-Id: I733af3126f126e5025f709cfe023b9f6bbc13e3e Reviewed-by: Marc Mutz <marc.mutz@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src/dbus/qdbusabstractadaptor_p.h')
-rw-r--r--src/dbus/qdbusabstractadaptor_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbus/qdbusabstractadaptor_p.h b/src/dbus/qdbusabstractadaptor_p.h
index 212878c29b..0c8fdcf66c 100644
--- a/src/dbus/qdbusabstractadaptor_p.h
+++ b/src/dbus/qdbusabstractadaptor_p.h
@@ -103,7 +103,7 @@ public: // typedefs
inline bool operator<(const AdaptorData &other) const
{ return QByteArray(interface) < other.interface; }
inline bool operator<(const QString &other) const
- { return QLatin1String(interface) < other; }
+ { return QLatin1StringView(interface) < other; }
inline bool operator<(const QByteArray &other) const
{ return interface < other; }
};