summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-23 10:22:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-23 13:23:42 +0200
commitbf39807c67eb2dc7596926486a22d781e8969d47 (patch)
tree55adb68b8fa059dd3b68fcc0012cf7fe7de94794 /extensions/source/propctrlr
parent20e1822a2582d4207b13368b3521b9d42407ce69 (diff)
loplugin:oncevar editeng..extensions
Change-Id: I3a63e3e3b873ef8a2d708d39be084124a6ad1346 Reviewed-on: https://gerrit.libreoffice.org/39153 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions/source/propctrlr')
-rw-r--r--extensions/source/propctrlr/browserline.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/propctrlr/browserline.cxx b/extensions/source/propctrlr/browserline.cxx
index 32c9cb680780..e345381733e9 100644
--- a/extensions/source/propctrlr/browserline.cxx
+++ b/extensions/source/propctrlr/browserline.cxx
@@ -268,7 +268,7 @@ namespace pcr
// for Issue 69452
if (AllSettings::GetLayoutRTL())
{
- sal_Unicode cRTL_mark = 0x200F;
+ sal_Unicode const cRTL_mark = 0x200F;
aText.append( OUString(cRTL_mark) );
}
@@ -284,7 +284,7 @@ namespace pcr
// for Issue 69452
if (AllSettings::GetLayoutRTL())
{
- sal_Unicode cRTL_mark = 0x200F;
+ sal_Unicode const cRTL_mark = 0x200F;
sDisplayName = comphelper::string::stripEnd(sDisplayName, cRTL_mark);
}