/source/ss/svl/

lication/atom+xml'/>
summaryrefslogtreecommitdiff
path: root/idlc/source
ion>
AgeCommit message (Expand)Author
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-24 12:34:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-24 12:36:29 +0200
commite710c1dbfb87a54d666752db1106b76e9e05ba43 (patch)
tree26d4a229f6dff683bb7e72afc8cdbc8d6f4d7c76 /toolkit
parent746a717ed4648cd6c0d0d810a90a6539373b130c (diff)
loplugin:simplifybool
Change-Id: Ib238714477fdeadad07c470e1d9ed64b2b18f25d
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxfont.cxx2
-rw-r--r--toolkit/source/awt/vclxwindows.cxx6
-rw-r--r--toolkit/source/controls/unocontrolmodel.cxx2
-rw-r--r--toolkit/source/helper/property.cxx2
-rw-r--r--toolkit/source/helper/unopropertyarrayhelper.cxx2
-rw-r--r--toolkit/source/helper/unowrapper.cxx2
6 files changed, 8 insertions, 8 deletions
diff --git a/toolkit/source/awt/vclxfont.cxx b/toolkit/source/awt/vclxfont.cxx
index a0628c0f22b3..9aece8bc85c6 100644
--- a/toolkit/source/awt/vclxfont.cxx
+++ b/toolkit/source/awt/vclxfont.cxx
@@ -66,7 +66,7 @@ bool VCLXFont::ImplAssertValidFontMetric()
pOutDev->SetFont( aOldFont );
}
}
- return mpFontMetric ? true : false;
+ return mpFontMetric != nullptr;
}
diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx
index e0cedc4963ff..a8c8cc0c4cd5 100644
--- a/toolkit/source/awt/vclxwindows.cxx
+++ b/toolkit/source/awt/vclxwindows.cxx
@@ -1140,7 +1140,7 @@ void VCLXRadioButton::setProperty( const OUString& PropertyName, const ::com::su
sal_Int16 n = sal_Int16();
if ( Value >>= n )
{
- bool b = n ? true : false;