summaryrefslogtreecommitdiff
path: root/include/svl/lstner.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-19 21:49:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-20 08:17:00 +0100
commit12f1faf7bf7b236f54f740a9f65646749fc266ee (patch)
tree92b570339a02ac977907be12dc8e2e49291d177d /include/svl/lstner.hxx
parent9e183fbfdbfbe364d17f9d36a0b33d2fae89862d (diff)
svl: sal_Bool -> bool
Change-Id: Ic31455a1f5ffffa35d4fdde901dd70734207b6f4
Diffstat (limited to 'include/svl/lstner.hxx')
-rw-r--r--include/svl/lstner.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/lstner.hxx b/include/svl/lstner.hxx
index 41b89d00a600..b7f2b47650e4 100644
--- a/include/svl/lstner.hxx
+++ b/include/svl/lstner.hxx
@@ -47,10 +47,10 @@ public:
SfxListener( const SfxListener &rCopy );
virtual ~SfxListener();
- sal_Bool StartListening( SfxBroadcaster& rBroadcaster, sal_Bool bPreventDups = sal_False );
- sal_Bool EndListening( SfxBroadcaster& rBroadcaster, sal_Bool bAllDups = sal_False );
+ bool StartListening( SfxBroadcaster& rBroadcaster, bool bPreventDups = false );
+ bool EndListening( SfxBroadcaster& rBroadcaster, bool bAllDups = false );
void EndListeningAll();
- sal_Bool IsListening( SfxBroadcaster& rBroadcaster ) const;
+ bool IsListening( SfxBroadcaster& rBroadcaster ) const;
sal_uInt16 GetBroadcasterCount() const
{ return aBCs.size(); }