From 7f5a7ef6384956a6089f1def275a86cb7024c568 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 18 Jul 2024 09:45:15 +0200 Subject: make UStringLess single-arg constructor explicit Change-Id: I0fb4723fa878f8ebdbe5ac0fe080559ffd4736dd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170679 Reviewed-by: Noel Grandin Tested-by: Jenkins --- connectivity/source/sdbcx/VCollection.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'connectivity/source/sdbcx') diff --git a/connectivity/source/sdbcx/VCollection.cxx b/connectivity/source/sdbcx/VCollection.cxx index e6671d4598a1..2f61b5ef0f3e 100644 --- a/connectivity/source/sdbcx/VCollection.cxx +++ b/connectivity/source/sdbcx/VCollection.cxx @@ -60,7 +60,7 @@ namespace ObjectMap m_aNameMap; // hold the elements and a name public: OHardRefMap(bool _bCase) - : m_aNameMap(_bCase) + : m_aNameMap(::comphelper::UStringMixLess(_bCase)) { } -- cgit