diff options
author | mb93783 <mb93783@v60x-so15.Germany.Sun.COM> | 2009-11-03 18:41:58 +0100 |
---|---|---|
committer | mb93783 <mb93783@v60x-so15.Germany.Sun.COM> | 2009-11-03 18:41:58 +0100 |
commit | 20820038846ae5821d42897623ca2bee2f8e0d87 (patch) | |
tree | 1940712f4a755afae6b21e2f424106338fb175c8 /unotools/source/config/syslocaleoptions.cxx | |
parent | 490dee4d9d416174505d3ea7bdb98f3890efd8d2 (diff) |
some fixes for warnings and errors found while building on more platforms
Diffstat (limited to 'unotools/source/config/syslocaleoptions.cxx')
-rwxr-xr-x[-rw-r--r--] | unotools/source/config/syslocaleoptions.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/unotools/source/config/syslocaleoptions.cxx b/unotools/source/config/syslocaleoptions.cxx index f358fe24df4f..7b14c9cb8c2f 100644..100755 --- a/unotools/source/config/syslocaleoptions.cxx +++ b/unotools/source/config/syslocaleoptions.cxx @@ -536,7 +536,7 @@ void SvtSysLocaleOptions::Commit() } -void SvtSysLocaleOptions::BlockBroadcasts( BOOL bBlock ) +void SvtSysLocaleOptions::BlockBroadcasts( bool bBlock ) { MutexGuard aGuard( GetMutex() ); pOptions->BlockBroadcasts( bBlock ); @@ -700,4 +700,6 @@ LanguageType SvtSysLocaleOptions::GetRealLanguage() const LanguageType SvtSysLocaleOptions::GetRealUILanguage() const { return pOptions->GetRealUILanguage(); -}
\ No newline at end of file +} + + |