From 973b47a336b239cc92f1789013d28e5bd55f859f Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 19 Feb 2014 12:30:34 +0100 Subject: unotools: sal_Bool -> bool Change-Id: I8051c0756e0474a5b4f748e0aa15a9922e82ea97 --- unotools/source/config/extendedsecurityoptions.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unotools/source/config/extendedsecurityoptions.cxx') diff --git a/unotools/source/config/extendedsecurityoptions.cxx b/unotools/source/config/extendedsecurityoptions.cxx index b6d02d37ee5e..acdf7adad215 100644 --- a/unotools/source/config/extendedsecurityoptions.cxx +++ b/unotools/source/config/extendedsecurityoptions.cxx @@ -132,7 +132,7 @@ class SvtExtendedSecurityOptions_Impl : public ConfigItem OUString m_aExtensionPropName; SvtExtendedSecurityOptions::OpenHyperlinkMode m_eOpenHyperlinkMode; - sal_Bool m_bROOpenHyperlinkMode; + bool m_bROOpenHyperlinkMode; ExtensionHashMap m_aExtensionHashMap; }; @@ -145,7 +145,7 @@ SvtExtendedSecurityOptions_Impl::SvtExtendedSecurityOptions_Impl() , m_aSecureExtensionsSetName( SECURE_EXTENSIONS_SET ) , m_aExtensionPropName( EXTENSION_PROPNAME ) , m_eOpenHyperlinkMode(SvtExtendedSecurityOptions::OPEN_NEVER) - , m_bROOpenHyperlinkMode(sal_False) + , m_bROOpenHyperlinkMode(false) // Init member then. { // Fill the extension hash map with all secure extension strings -- cgit