summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2012-04-30 13:20:04 +0200
committerEike Rathke <erack@redhat.com>2012-04-30 13:20:04 +0200
commit332cc04cbbe069baa5a72e4e1be9de10c64e2e56 (patch)
treea83cd1d2b8d85cc19dee02f68e0e064254ee4581 /svl
parent850497d72193704192f9f036425ea51b42cc68cd (diff)
straighten confusing brackets
Diffstat (limited to 'svl')
-rw-r--r--svl/source/numbers/zforlist.cxx15
1 files changed, 7 insertions, 8 deletions
diff --git a/svl/source/numbers/zforlist.cxx b/svl/source/numbers/zforlist.cxx
index 1f443c8da103..208470608ac5 100644
--- a/svl/source/numbers/zforlist.cxx
+++ b/svl/source/numbers/zforlist.cxx
@@ -135,12 +135,11 @@ SvNumberFormatterRegistry_Impl::~SvNumberFormatterRegistry_Impl()
SvNumberFormatter* SvNumberFormatterRegistry_Impl::Remove( SvNumberFormatter* pThis )
{
- for(
- SvNumberFormatterList_impl::iterator it = aFormatters.begin();
- it < aFormatters.end();
- ++it
- ) {
- if ( *it == pThis ) {
+ for (SvNumberFormatterList_impl::iterator it = aFormatters.begin();
+ it < aFormatters.end(); ++it)
+ {
+ if ( *it == pThis )
+ {
aFormatters.erase( it );
break;
}
@@ -150,8 +149,8 @@ SvNumberFormatter* SvNumberFormatterRegistry_Impl::Remove( SvNumberFormatter* pT
void SvNumberFormatterRegistry_Impl::ConfigurationChanged(
utl::ConfigurationBroadcaster*,
- sal_uInt32 nHint
-) {
+ sal_uInt32 nHint)
+{
if ( nHint & SYSLOCALEOPTIONS_HINT_LOCALE )
{
::osl::MutexGuard aGuard( SvNumberFormatter::GetMutex() );