summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamás Zolnai <tamas.zolnai@collabora.com>2018-02-14 17:10:47 +0100
committerHenry Castro <hcastro@collabora.com>2018-02-14 17:29:17 +0100
commit45c472697821df1022cb8ac4d81a14fcb1f734ef (patch)
treefb38617093731a2956fbc43511059f55af87f77b
parent0df89c0fdaaff10272fb74b196ade0bcc9ea1ff6 (diff)
Windows build fix
Related to this commit: 83202ea1341c98a216871f14702548ce5aabd94a Change-Id: Ied2184f27650219d807095838941400590731817 Reviewed-on: https://gerrit.libreoffice.org/49743 Reviewed-by: Henry Castro <hcastro@collabora.com> Tested-by: Henry Castro <hcastro@collabora.com>
-rw-r--r--sfx2/source/control/unoctitm.cxx4
1 files 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<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>('}'));
}
}
}