connectivity/source/drivers/macab/MacabAddressBook.cxx |    4 ++--
 connectivity/source/drivers/macab/MacabCatalog.cxx     |    2 +-
 connectivity/source/drivers/macab/MacabDriver.cxx      |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit f8ad36a2ec1d60b96653cb5538ef6f6c34084583
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Wed Oct 18 16:57:34 2023 +0200
Commit:     Stephan Bergmann <sberg...@redhat.com>
CommitDate: Wed Oct 18 18:56:16 2023 +0200

    loplugin:stringstatic
    
    Change-Id: I008c48a315841a2fb642410f210d770bd14bfef5
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158121
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sberg...@redhat.com>

diff --git a/connectivity/source/drivers/macab/MacabAddressBook.cxx 
b/connectivity/source/drivers/macab/MacabAddressBook.cxx
index 02d4faf74290..7ade1ac0a830 100644
--- a/connectivity/source/drivers/macab/MacabAddressBook.cxx
+++ b/connectivity/source/drivers/macab/MacabAddressBook.cxx
@@ -113,8 +113,8 @@ MacabAddressBook::~MacabAddressBook()
 const OUString & MacabAddressBook::getDefaultTableName()
 {
     /* This string probably needs to be localized. */
-    static const OUString aDefaultTableName
-        (OUString("Address Book"));
+    static constexpr OUString aDefaultTableName
+        (u"Address Book"_ustr);
 
     return aDefaultTableName;
 }
diff --git a/connectivity/source/drivers/macab/MacabCatalog.cxx 
b/connectivity/source/drivers/macab/MacabCatalog.cxx
index 96ff62fd5b6a..d6485ab1c971 100644
--- a/connectivity/source/drivers/macab/MacabCatalog.cxx
+++ b/connectivity/source/drivers/macab/MacabCatalog.cxx
@@ -80,7 +80,7 @@ void MacabCatalog::refreshUsers()
 
 const OUString& MacabCatalog::getDot()
 {
-    static const OUString sDot = ".";
+    static constexpr OUString sDot = u"."_ustr;
     return sDot;
 }
 
diff --git a/connectivity/source/drivers/macab/MacabDriver.cxx 
b/connectivity/source/drivers/macab/MacabDriver.cxx
index f4527bc6094b..9c68e48f12a7 100644
--- a/connectivity/source/drivers/macab/MacabDriver.cxx
+++ b/connectivity/source/drivers/macab/MacabDriver.cxx
@@ -115,7 +115,7 @@ bool MacabImplModule::impl_loadModule()
     OSL_ENSURE( !m_hConnectorModule && !m_pConnectionFactoryFunc,
         "MacabImplModule::impl_loadModule: inconsistence: inconsistency (never 
attempted load before, but some values already set)!");
 
-    const OUString sModuleName( SAL_MODULENAME( "macabdrv1" ) );
+    constexpr OUString sModuleName( u"" SAL_MODULENAME( "macabdrv1" ) ""_ustr 
);
     m_hConnectorModule = osl_loadModuleRelative( &thisModule, 
sModuleName.pData, SAL_LOADMODULE_NOW );   // LAZY! #i61335#
     OSL_ENSURE( m_hConnectorModule, "MacabImplModule::impl_loadModule: could 
not load the implementation library!" );
     if ( !m_hConnectorModule )

Reply via email to