summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2017-04-24 12:45:29 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2017-04-24 13:57:14 +0200
commitf3902b2369cbcf123059fce9bc9269a123d979a1 (patch)
tree851698bf9e489a7a3b96c15311b7decff097f659 /sfx2
parent67d461ca4f558eedefd1dfce2c7c25a708326eaa (diff)
Fix indentation
Change-Id: I1c974fb556d5fbe8492356a7471e659035308d0e
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/guisaveas.cxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/sfx2/source/doc/guisaveas.cxx b/sfx2/source/doc/guisaveas.cxx
index a1ab9ca47d02..52eb9ee9e5c2 100644
--- a/sfx2/source/doc/guisaveas.cxx
+++ b/sfx2/source/doc/guisaveas.cxx
@@ -1659,16 +1659,14 @@ bool SfxStoringHelper::CheckFilterOptionsAppearance(
if( xFilterCFG.is() )
{
try {
- uno::Sequence < beans::PropertyValue > aProps;
+ uno::Sequence < beans::PropertyValue > aProps;
uno::Any aAny = xFilterCFG->getByName( aFilterName );
- if ( aAny >>= aProps )
- {
+ if ( aAny >>= aProps )
+ {
::comphelper::SequenceAsHashMap aPropsHM( aProps );
- OUString aServiceName = aPropsHM.getUnpackedValueOrDefault(
- "UIComponent",
- OUString() );
+ OUString aServiceName = aPropsHM.getUnpackedValueOrDefault( "UIComponent", OUString() );
if( !aServiceName.isEmpty() )
- bUseFilterOptions = true;
+ bUseFilterOptions = true;
}
}
catch( const uno::Exception& )