summaryrefslogtreecommitdiff
path: root/sc/inc/miscuno.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 10:07:26 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:14:59 +0200
commitdd9fd8f3b7761d31afacb7fedf783a6153510471 (patch)
tree8a10def36580e738b1f43df54a9fe5a9dca23a01 /sc/inc/miscuno.hxx
parente0c9266f5ca7823bbe7dc8a90ee705fbd71addd0 (diff)
sal_Bool->bool
Change-Id: Ide1fd8bdc6a6c3e5fc454b248c35f563c2ef8841
Diffstat (limited to 'sc/inc/miscuno.hxx')
-rw-r--r--sc/inc/miscuno.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/miscuno.hxx b/sc/inc/miscuno.hxx
index 3d04b6209e82..5c35b36dc284 100644
--- a/sc/inc/miscuno.hxx
+++ b/sc/inc/miscuno.hxx
@@ -157,9 +157,9 @@ class SC_DLLPUBLIC ScUnoHelpFunctions
public:
static com::sun::star::uno::Reference<com::sun::star::uno::XInterface>
AnyToInterface( const com::sun::star::uno::Any& rAny );
- static sal_Bool GetBoolProperty( const com::sun::star::uno::Reference<
+ static bool GetBoolProperty( const com::sun::star::uno::Reference<
com::sun::star::beans::XPropertySet>& xProp,
- const OUString& rName, sal_Bool bDefault = false );
+ const OUString& rName, bool bDefault = false );
static sal_Int32 GetLongProperty( const com::sun::star::uno::Reference<
com::sun::star::beans::XPropertySet>& xProp,
const OUString& rName, long nDefault = 0 );
@@ -170,11 +170,11 @@ public:
const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet>& xProp,
const OUString& rName, const OUString& rDefault );
- static sal_Bool GetBoolFromAny( const com::sun::star::uno::Any& aAny );
+ static bool GetBoolFromAny( const com::sun::star::uno::Any& aAny );
static sal_Int16 GetInt16FromAny( const com::sun::star::uno::Any& aAny );
static sal_Int32 GetInt32FromAny( const com::sun::star::uno::Any& aAny );
static sal_Int32 GetEnumFromAny( const com::sun::star::uno::Any& aAny );
- static void SetBoolInAny( com::sun::star::uno::Any& rAny, sal_Bool bValue );
+ static void SetBoolInAny( com::sun::star::uno::Any& rAny, bool bValue );
static void SetOptionalPropertyValue(
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& rPropSet,