summaryrefslogtreecommitdiff
path: root/svl/inc/svl/hint.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/inc/svl/hint.hxx')
-rw-r--r--svl/inc/svl/hint.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/inc/svl/hint.hxx b/svl/inc/svl/hint.hxx
index 49ab106e45e3..9c80d770e28d 100644
--- a/svl/inc/svl/hint.hxx
+++ b/svl/inc/svl/hint.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -57,13 +57,13 @@ public:
}
#define IMPL_PTRHINT_AUTODELETE(Name, Type) \
- TYPEINIT1(Name, SfxHint); \
+ TYPEINIT1(Name, SfxHint); \
Name::Name( Type* pObject, BOOL bOwnedByHint ) \
{ pObj = pObject; bIsOwner = bOwnedByHint; } \
Name::~Name() { if ( bIsOwner ) delete pObj; }
#define IMPL_PTRHINT(Name, Type) \
- TYPEINIT1(Name, SfxHint); \
+ TYPEINIT1(Name, SfxHint); \
Name::Name( Type* pObject, BOOL bOwnedByHint ) \
{ pObj = pObject; bIsOwner = bOwnedByHint; } \
Name::~Name() {}