diff options
author | Marc Mutz <[email protected]> | 2025-05-28 09:29:05 +0200 |
---|---|---|
committer | Marc Mutz <[email protected]> | 2025-05-31 15:43:22 +0200 |
commit | 71842cfb89da0bed1efd6cf7a567550d9e8119f6 (patch) | |
tree | 024ac7f496005b267a6a9e4c93898b32253aad9c | |
parent | 475c951d69a326e7aed0f18f525a155dd95a6a6b (diff) |
Non-normalized signatures passed to SIGNAL or SLOT macros require a
normalization step before the actual connection can be made, which
takes extra time and extra memory.
Also, a normalized signature is generally smaller than a
non-normalized one, so we save even in executable code size.
Amends a833d5682ac44571e13568336f2bd3ec7deb1d6d.
Task-number: QTBUG-116197
Pick-to: 6.9 6.8
Change-Id: I942f5ac262f05ca4486b2ed2a22654d1a12a3ef0
Reviewed-by: Fabian Kosmale <[email protected]>
-rw-r--r-- | src/plugins/platformthemes/xdgdesktopportal/qxdgdesktopportaltheme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platformthemes/xdgdesktopportal/qxdgdesktopportaltheme.cpp b/src/plugins/platformthemes/xdgdesktopportal/qxdgdesktopportaltheme.cpp index 951c1833106..5fa04aa8ec9 100644 --- a/src/plugins/platformthemes/xdgdesktopportal/qxdgdesktopportaltheme.cpp +++ b/src/plugins/platformthemes/xdgdesktopportal/qxdgdesktopportaltheme.cpp @@ -150,7 +150,7 @@ QXdgDesktopPortalTheme::QXdgDesktopPortalTheme() QDBusConnection::sessionBus().connect( "org.freedesktop.portal.Desktop"_L1, "/org/freedesktop/portal/desktop"_L1, "org.freedesktop.portal.Settings"_L1, "SettingChanged"_L1, d_ptr.get(), - SLOT(settingChanged(QString, QString, QDBusVariant))); + SLOT(settingChanged(QString,QString,QDBusVariant))); } QPlatformMenuItem* QXdgDesktopPortalTheme::createPlatformMenuItem() const |