summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/Outliner.cxx
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@alta.org.br>2012-04-06 08:27:05 -0300
committerOlivier Hallot <olivier.hallot@alta.org.br>2012-04-06 08:33:34 -0300
commit7d82fb18fe6ae68f6eb6a33c6030105f9e2fe232 (patch)
tree21f0241197e5987e5bee788e759e06d083a5c1fb /sd/source/ui/view/Outliner.cxx
parent501e290b8eb86a31e936e210aeb76d0b8c1a12b3 (diff)
Review of some RTL_CONSTASCII_USTRINGPARAM removal
Remove OUString constructor where not needed.
Diffstat (limited to 'sd/source/ui/view/Outliner.cxx')
-rw-r--r--sd/source/ui/view/Outliner.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx
index d9858b15f897..e7100e7f1759 100644
--- a/sd/source/ui/view/Outliner.cxx
+++ b/sd/source/ui/view/Outliner.cxx
@@ -211,8 +211,7 @@ Outliner::Outliner( SdDrawDocument* pDoc, sal_uInt16 nMode )
const SvtLinguConfig aLinguConfig;
Any aAny;
- aAny = aLinguConfig.GetProperty(
- rtl::OUString( UPN_IS_SPELL_AUTO ) );
+ aAny = aLinguConfig.GetProperty( UPN_IS_SPELL_AUTO );
aAny >>= bOnlineSpell;
}
catch( ... )