diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-17 14:57:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-17 15:20:45 +0200 |
commit | f4022fedc676e3b5c8e5dc1e559a2b9fe9c0fcf7 (patch) | |
tree | fab8981aea4ab092677b4b6d9aae177b23d7fa8c /idl/source | |
parent | b6df255ff1111d4400edd42b12f4f9929be3e83f (diff) |
loplugin:implicitboolconversion clean-up
Change-Id: Ib7138c40a7f78adae2c362019bc9e20900391ebf
Diffstat (limited to 'idl/source')
-rw-r--r-- | idl/source/objects/bastype.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idl/source/objects/bastype.cxx b/idl/source/objects/bastype.cxx index fc9d3b8a8cd8..e7994448dc85 100644 --- a/idl/source/objects/bastype.cxx +++ b/idl/source/objects/bastype.cxx @@ -59,7 +59,7 @@ static bool ReadRangeSvIdl( SvStringHashEntry * pName, SvTokenStream & rInStm, SvStream& WriteSvBOOL(SvStream & rStm, const SvBOOL & rb ) { - sal_uInt8 n = rb.nVal; + sal_uInt8 n = int(rb.nVal); if( rb.bSet ) n |= 0x02; rStm.WriteUChar( n ); |