vcl/osx/salinst.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fbd888bfc8e916361afbc55dbfa329ebaab6d2d3
Author:     Devashish Gupta <ashishkrgupta.haji...@gmail.com>
AuthorDate: Thu Mar 27 15:58:47 2025 +0530
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Fri Mar 28 08:03:57 2025 +0100

    tdf#158068: Replace OUString literal with u'...'_ustr in getOSVersion
    
    Change-Id: Id8a706cd3f906d37f865080f154aabcfac2647cb
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183387
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/vcl/osx/salinst.cxx b/vcl/osx/salinst.cxx
index 6d6cb6d49989..8b9fed74c5b0 100644
--- a/vcl/osx/salinst.cxx
+++ b/vcl/osx/salinst.cxx
@@ -1023,7 +1023,7 @@ OUString AquaSalInstance::getOSVersion()
     if ( sysVersionDict )
         versionString = [ sysVersionDict valueForKey: @"ProductVersion" ];
 
-    OUString aVersion = "macOS ";
+    OUString aVersion = u"macOS "_ustr;
     if ( versionString )
         aVersion += OUString::fromUtf8( [ versionString UTF8String ] );
     else

Reply via email to