summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-02-21 22:13:42 +0200
committerTor Lillqvist <tml@collabora.com>2014-02-21 22:13:42 +0200
commit01f1dae0aaa8f98db593e54f46cf35bd7b109796 (patch)
treec54011a7a91246fff6776ba214f0414fb6693782 /vcl
parentc42719bf5d320f449b55721d3a0e7feda61dc531 (diff)
WaE: implicit conversion of literal of type 'sal_Bool' to 'bool'
Change-Id: Icc60d9dbbc8be68bd1ac54c93bd2506af6c01c0c
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/settings.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx
index c6c93dda5579..37adb5f80608 100644
--- a/vcl/source/app/settings.cxx
+++ b/vcl/source/app/settings.cxx
@@ -681,11 +681,11 @@ bool StyleSettings::operator ==( const StyleSettings& rSet ) const
return true;
if (mpData->mIconTheme != rSet.mpData->mIconTheme) {
- return sal_False;
+ return false;
}
if (*mpData->mIconThemeSelector != *rSet.mpData->mIconThemeSelector) {
- return sal_False;
+ return false;
}
if ( (mpData->mnOptions == rSet.mpData->mnOptions) &&