diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-27 15:29:32 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-27 15:31:03 +0200 |
commit | 17432a57a6aba6c43a227970c17779c100292e8e (patch) | |
tree | 4dd1f6f192125cd5d6e4fe69782f0bcdb830a34d /testtools | |
parent | c8509a027f2caea5e4aed16a7145d0b31bb93145 (diff) |
More loplugin:simplifybool
Change-Id: I8d8d6220ff597ce416042fe03d86a7e7bb0a3518
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/source/bridgetest/constructors.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testtools/source/bridgetest/constructors.cxx b/testtools/source/bridgetest/constructors.cxx index 423306a01167..855345746285 100644 --- a/testtools/source/bridgetest/constructors.cxx +++ b/testtools/source/bridgetest/constructors.cxx @@ -349,7 +349,7 @@ void Impl2::initialize(css::uno::Sequence< css::uno::Any > const & arguments) && (arguments[32] >>= arg32) && arg32.member.getLength() == 1 && arg32.member[0].member1 == 'X' && arg32.member[0].member2.getLength() == 1 - && (arg32.member[0].member2[0] >>= arg32a) && arg32a == true + && (arg32.member[0].member2[0] >>= arg32a) && arg32a && (arguments[33] >>= arg33) && arg33.member.getLength() == 1 && arg33.member[0].member1.member == 'X' && arg33.member[0].member2.getLength() == 1 |