Kaydet (Commit) e2baeba6 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:simplifybool

Change-Id: I6e8c06c28d710709d4a6b240e634d0216823cbe4
üst 242b2ad3
...@@ -206,7 +206,7 @@ public: ...@@ -206,7 +206,7 @@ public:
throw( css::uno::RuntimeException, std::exception ) override throw( css::uno::RuntimeException, std::exception ) override
{ {
T t; T t;
return ( aElement >>= t ) ? hasItem( t ) : sal_False; return ( aElement >>= t ) && hasItem( t );
} }
virtual void SAL_CALL insert( const css::uno::Any& aElement ) virtual void SAL_CALL insert( const css::uno::Any& aElement )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment