sfx2/source/control/unoctitm.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 45c472697821df1022cb8ac4d81a14fcb1f734ef Author: Tamás Zolnai <[email protected]> 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 <[email protected]> Tested-by: Henry Castro <[email protected]> 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>('}')); } } } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
