summaryrefslogtreecommitdiff
path: root/sfx2/inc/sfx2/genlink.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/inc/sfx2/genlink.hxx')
-rw-r--r--sfx2/inc/sfx2/genlink.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/inc/sfx2/genlink.hxx b/sfx2/inc/sfx2/genlink.hxx
index 0edf8e3b9dd6..35a7534e6294 100644
--- a/sfx2/inc/sfx2/genlink.hxx
+++ b/sfx2/inc/sfx2/genlink.hxx
@@ -46,8 +46,8 @@ public:
GenLink& operator = ( const GenLink& rOrig )
{ pFunc = rOrig.pFunc; aLink = rOrig.aLink; return *this; }
- BOOL operator!() const { return !aLink && !pFunc; }
- BOOL IsSet() const { return aLink.IsSet() || pFunc; }
+ sal_Bool operator!() const { return !aLink && !pFunc; }
+ sal_Bool IsSet() const { return aLink.IsSet() || pFunc; }
long Call( void* pCaller )
{ return pFunc ? (*pFunc)(pCaller) : aLink.Call(pCaller); }