diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-07-16 13:52:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-07-16 14:00:18 +0200 |
commit | 3f2b3e0bd64e36ba1b23908c2d880fa28073e68b (patch) | |
tree | a4a0773b1356a0a2127629595be21a461cdf0a1c | |
parent | e2462a3897bc5122bada288efa53daae7a4ede81 (diff) |
loplugin:simplifybool
Change-Id: I5e87ac88a2e0f20892ef89f36ccf8cac0bdc90c4
-rw-r--r-- | oox/source/ppt/timenodelistcontext.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/ppt/timenodelistcontext.cxx b/oox/source/ppt/timenodelistcontext.cxx index b6d978e1ac96..e094d90a57d7 100644 --- a/oox/source/ppt/timenodelistcontext.cxx +++ b/oox/source/ppt/timenodelistcontext.cxx @@ -187,7 +187,7 @@ namespace oox { namespace ppt { if( maTo >>= aString ) { OSL_TRACE( "Magic conversion %s", OUSTRING_TO_CSTR( aString ) ); - maTo = makeAny( aString == "visible" ? sal_True : sal_False ); + maTo = makeAny( aString == "visible" ); if( !maTo.has<sal_Bool>() ) OSL_TRACE( "conversion failed" ); } |