[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - sfx2/source

Tamás Zolnai tamas.zolnai at collabora.com
Wed Feb 14 16:29:39 UTC 2018


 sfx2/source/control/unoctitm.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 45c472697821df1022cb8ac4d81a14fcb1f734ef
Author: Tamás Zolnai <tamas.zolnai at collabora.com>
Date:   Wed Feb 14 17:10:47 2018 +0100

    Windows build fix
    
    Related to this commit:
    83202ea1341c98a216871f14702548ce5aabd94a
    
    Change-Id: Ied2184f27650219d807095838941400590731817
    Reviewed-on: https://gerrit.libreoffice.org/49743
    Reviewed-by: Henry Castro <hcastro at collabora.com>
    Tested-by: Henry Castro <hcastro at collabora.com>

diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx
index 39561e09489e..668f5c65b222 100644
--- a/sfx2/source/control/unoctitm.cxx
+++ b/sfx2/source/control/unoctitm.cxx
@@ -1191,7 +1191,7 @@ static void InterceptLOKStateChangeEvent(const SfxViewFrame* pViewFrame, const c
             css::uno::Sequence< OUString > aSeq;
             if (aEvent.State >>= aSeq)
             {
-                aBuffer.append(u'{');
+                aBuffer.append(static_cast<sal_Unicode>('{'));
                 for (sal_Int32 itSeq = 0; itSeq < aSeq.getLength(); itSeq++)
                 {
                     aBuffer.append("\"" + aSeq[itSeq]);
@@ -1200,7 +1200,7 @@ static void InterceptLOKStateChangeEvent(const SfxViewFrame* pViewFrame, const c
                     else
                         aBuffer.append("\":true");
                 }
-                aBuffer.append(u'}');
+                aBuffer.append(static_cast<sal_Unicode>('}'));
             }
         }
     }


More information about the Libreoffice-commits mailing list