summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>('}'));
}
}
}