summaryrefslogtreecommitdiffstats
path: root/src/corelib/global
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2021-09-30 09:20:31 -0700
committerThiago Macieira <thiago.macieira@intel.com>2021-11-03 14:54:37 -0700
commit74e1ab1adf5f8809017014112460c72787293f7d (patch)
tree6f1f05af28aa20900f273aeb59533a824d749037 /src/corelib/global
parent2c2c6de85ae41d09063f3c68a42522e3d74ad8fa (diff)
qlibrary.cpp: avoid the +12 constant in too many places
Pick-to: 6.2 Change-Id: I2bbf422288924c198645fffd16a9a5f99bf9499e Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/corelib/global')
-rw-r--r--src/corelib/global/qlibraryinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/global/qlibraryinfo.cpp b/src/corelib/global/qlibraryinfo.cpp
index b77df87f91..e399369d74 100644
--- a/src/corelib/global/qlibraryinfo.cpp
+++ b/src/corelib/global/qlibraryinfo.cpp
@@ -735,7 +735,7 @@ void qt_core_boilerplate()
"Installation prefix: %s\n"
"Library path: %s\n"
"Plugin path: %s\n",
- qt_configure_prefix_path_str + 12,
+ QT_CONFIGURE_PREFIX_PATH,
qt_configure_strs[QT_PREPEND_NAMESPACE(QLibraryInfo)::LibrariesPath - 1],
qt_configure_strs[QT_PREPEND_NAMESPACE(QLibraryInfo)::PluginsPath - 1]);