diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-13 11:57:14 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-14 07:50:34 +0200 |
commit | a8f721ff96121697de8a97856ba4da145fc0c14e (patch) | |
tree | d61517a1e700702de0fadee06fb64c1158a3f97e /include/sfx2/ctrlitem.hxx | |
parent | 5fe7ecc04f35ef785510e3ef404f46eb6f05a123 (diff) |
sfx2: sal_Bool->bool
Change-Id: I626371bac4fbd9c6a2cdc5a57a3022f8b6ac55b2
Diffstat (limited to 'include/sfx2/ctrlitem.hxx')
-rw-r--r-- | include/sfx2/ctrlitem.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/ctrlitem.hxx b/include/sfx2/ctrlitem.hxx index c693fc961cf6..9925b5433e91 100644 --- a/include/sfx2/ctrlitem.hxx +++ b/include/sfx2/ctrlitem.hxx @@ -57,7 +57,7 @@ public: void Bind( sal_uInt16 nNewId, SfxBindings * = 0); // Register in SfxBindings void UnBind(); void ReBind(); - sal_Bool IsBound() const; + bool IsBound() const; void ClearCache(); void SetBindings(SfxBindings &rBindings) { pBindings = &rBindings; } @@ -75,7 +75,7 @@ public: static SfxItemState GetItemState( const SfxPoolItem* pState ); - SAL_DLLPRIVATE sal_Bool IsBindable_Impl() const + SAL_DLLPRIVATE bool IsBindable_Impl() const { return pBindings != NULL; } SAL_DLLPRIVATE void BindInternal_Impl( sal_uInt16 nNewId, SfxBindings* ); }; |