diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-24 08:22:02 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-24 19:17:55 +0100 |
commit | 9c8ae146042a28d1d56b7c672d5b3a9d659515b4 (patch) | |
tree | bc36030d42f947bf479a8caf2d1638d77f4f5faf | |
parent | a283847a95dd8935dec687d91709604d96636a34 (diff) |
sal_Bool -> bool (remaining uses of css::uno::Any::has)
Change-Id: I041540307d48083955a74d20f73219ac458037fe
Reviewed-on: https://gerrit.libreoffice.org/48482
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | oox/source/ppt/timenodelistcontext.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/file/bc.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/ppt/timenodelistcontext.cxx b/oox/source/ppt/timenodelistcontext.cxx index 00841a2c487a..7c98cfd49340 100644 --- a/oox/source/ppt/timenodelistcontext.cxx +++ b/oox/source/ppt/timenodelistcontext.cxx @@ -185,7 +185,7 @@ namespace oox { namespace ppt { else if( aString == "false" ) maTo <<= false; - if (!maTo.has<sal_Bool>()) + if (!maTo.has<bool>()) { SAL_WARN("oox.ppt", "conversion failed"); maTo <<= false; diff --git a/ucb/source/ucp/file/bc.cxx b/ucb/source/ucp/file/bc.cxx index 9f9203166d2a..4f076002ac8c 100644 --- a/ucb/source/ucp/file/bc.cxx +++ b/ucb/source/ucp/file/bc.cxx @@ -353,7 +353,7 @@ BaseContent::execute( const Command& aCommand, } else if ( aCommand.Name == "delete" ) { - if( ! aCommand.Argument.has< sal_Bool >() ) + if( ! aCommand.Argument.has< bool >() ) m_pMyShell->installError( CommandId, TASKHANDLING_WRONG_DELETE_ARGUMENT ); else |