From 45c472697821df1022cb8ac4d81a14fcb1f734ef Mon Sep 17 00:00:00 2001 From: Tamás Zolnai Date: Wed, 14 Feb 2018 17:10:47 +0100 Subject: Windows build fix Related to this commit: 83202ea1341c98a216871f14702548ce5aabd94a Change-Id: Ied2184f27650219d807095838941400590731817 Reviewed-on: https://gerrit.libreoffice.org/49743 Reviewed-by: Henry Castro Tested-by: Henry Castro --- sfx2/source/control/unoctitm.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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('{')); 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('}')); } } } -- cgit v1.2.3