[Libreoffice-commits] core.git: vcl/source
Tor Lillqvist
tml at collabora.com
Fri Feb 21 12:14:58 PST 2014
vcl/source/app/settings.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 01f1dae0aaa8f98db593e54f46cf35bd7b109796
Author: Tor Lillqvist <tml at collabora.com>
Date: Fri Feb 21 22:13:42 2014 +0200
WaE: implicit conversion of literal of type 'sal_Bool' to 'bool'
Change-Id: Icc60d9dbbc8be68bd1ac54c93bd2506af6c01c0c
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx
index c6c93dd..37adb5f 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) &&
More information about the Libreoffice-commits
mailing list