summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-23 17:03:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-23 17:03:58 +0200
commitac1130130b50c6e047629e4387f8bbabe4241494 (patch)
tree6d02203b089066a45a2e008d6357d935c1e8d7fa /sd/source/ui/framework
parentec7af68a0d4c0d9b509f7267ba49be65dfc8732b (diff)
Use comphelper::SequenceAsHashMap::getUnpackedValueOrDefault<bool>
...instead of ...<sal_Bool>; plus ensuing loplugin:implicitboolconversion Change-Id: I5400e9d3175b9fe9b6088d37fe6bf3275314d7d0
Diffstat (limited to 'sd/source/ui/framework')
-rw-r--r--sd/source/ui/framework/factories/BasicToolBarFactory.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/framework/factories/BasicToolBarFactory.cxx b/sd/source/ui/framework/factories/BasicToolBarFactory.cxx
index 7ae9508d906a..cba8afb1d346 100644
--- a/sd/source/ui/framework/factories/BasicToolBarFactory.cxx
+++ b/sd/source/ui/framework/factories/BasicToolBarFactory.cxx
@@ -90,7 +90,7 @@ void SAL_CALL BasicToolBarFactory::initialize (const Sequence<Any>& aArguments)
utl::MediaDescriptor aDescriptor (mxController->getModel()->getArgs());
if ( ! aDescriptor.getUnpackedValueOrDefault(
utl::MediaDescriptor::PROP_PREVIEW(),
- sal_False))
+ false))
{
// Register the factory for its supported tool bars.
Reference<XControllerManager> xControllerManager(mxController, UNO_QUERY_THROW);