summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-01 16:23:59 +0200
committerNoel Grandin <noel@peralex.com>2015-04-02 09:38:29 +0200
commite9cb5577f4c1be0f59863ec5ccb68e8794a2f117 (patch)
tree9a84237851499e829442ed322ba050189943ce21 /extensions
parent1a18cafecb06a76e872f5f1a9434160ea8ffd881 (diff)
loplugin:staticmethods
Change-Id: Ibf0c73ac17ec19ed672f66907db47057920babca
Diffstat (limited to 'extensions')
-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 8cfbc3cabe21..bd0b335f6af7 100644
--- a/extensions/source/propctrlr/browserline.cxx
+++ b/extensions/source/propctrlr/browserline.cxx
@@ -274,7 +274,7 @@ namespace pcr
aText.append("...........");
// for Issue 69452
- if (Application::GetSettings().GetLayoutRTL())
+ if (AllSettings::GetLayoutRTL())
{
sal_Unicode cRTL_mark = 0x200F;
aText.append( OUString(cRTL_mark) );
@@ -290,7 +290,7 @@ namespace pcr
OUString sDisplayName = m_aFtTitle.GetText();
// for Issue 69452
- if (Application::GetSettings().GetLayoutRTL())
+ if (AllSettings::GetLayoutRTL())
{
sal_Unicode cRTL_mark = 0x200F;
sDisplayName = comphelper::string::stripEnd(sDisplayName, cRTL_mark);