summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-26 11:24:31 +0200
committerMichael Stahl <mstahl@redhat.com>2012-10-04 21:29:35 +0200
commite247cb585c749ac1ea2abdb29c872fb977ab3fe3 (patch)
tree81ea20d163b6337122686e707aa4384083179fe3 /svl
parent14916972c532bc4713c2bc11acd3c4f9c74e93a1 (diff)
sal_Bool->bool in svl::DECL_PTRHINT
Change-Id: Ib9a0aa8e22cb84b07b7346e5647b2a2667f05c6a
Diffstat (limited to 'svl')
-rw-r--r--svl/inc/svl/hint.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svl/inc/svl/hint.hxx b/svl/inc/svl/hint.hxx
index 8c5c5d9f5394..52401e25409a 100644
--- a/svl/inc/svl/hint.hxx
+++ b/svl/inc/svl/hint.hxx
@@ -36,20 +36,20 @@ public:
class Visibility Name: public SfxHint \
{ \
Type* pObj; \
- sal_Bool bIsOwner; \
+ bool bIsOwner; \
\
public: \
TYPEINFO(); \
- Name( Type* Object, sal_Bool bOwnedByHint = sal_False ); \
+ Name( Type* Object, bool bOwnedByHint = false ); \
~Name(); \
\
Type* GetObject() const { return pObj; } \
- sal_Bool IsOwner() const { return bIsOwner; } \
+ bool IsOwner() const { return bIsOwner; } \
}
#define IMPL_PTRHINT(Name, Type) \
TYPEINIT1(Name, SfxHint); \
- Name::Name( Type* pObject, sal_Bool bOwnedByHint ) \
+ Name::Name( Type* pObject, bool bOwnedByHint ) \
{ pObj = pObject; bIsOwner = bOwnedByHint; } \
Name::~Name() {}