diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-18 11:23:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-18 11:27:39 +0200 |
commit | c3e3f466571e4993c1b5e42c6d15e37c48f3a069 (patch) | |
tree | 538fb90ed2c05e725f28ff16d41fd27ca38a7573 /include/svx | |
parent | e399c0759812affd4f7f6e1e3aacfbcafc06ad6d (diff) |
sfx2: sal_Bool->bool
Change-Id: I375a72c34e46778385a9fdc24c9ebd0f0a3f3c9b
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/fmshell.hxx | 6 | ||||
-rw-r--r-- | include/svx/svxdlg.hxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/fmshell.hxx b/include/svx/fmshell.hxx index c36b26d1dfa7..ababcc43444c 100644 --- a/include/svx/fmshell.hxx +++ b/include/svx/fmshell.hxx @@ -108,7 +108,7 @@ public: virtual void Execute( SfxRequest& ); virtual void GetState( SfxItemSet& ); - virtual sal_Bool HasUIFeature( sal_uInt32 nFeature ); + virtual bool HasUIFeature( sal_uInt32 nFeature ); void ExecuteTextAttribute( SfxRequest& ); void GetTextAttributeState( SfxItemSet& ); @@ -129,8 +129,8 @@ public: void ForgetActiveControl(); void SetControlActivationHandler( const Link& _rHdl ); - virtual void Activate(sal_Bool bMDI); - virtual void Deactivate(sal_Bool bMDI); + virtual void Activate(bool bMDI); + virtual void Deactivate(bool bMDI); // helper methods for implementing XFormLayerAccess SdrUnoObj* GetFormControl( diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx index 88a276f3f5f8..dbbc3d22ad57 100644 --- a/include/svx/svxdlg.hxx +++ b/include/svx/svxdlg.hxx @@ -459,7 +459,7 @@ public: virtual AbstractScriptSelectorDialog* CreateScriptSelectorDialog( Window* pParent, - sal_Bool bShowSlots, + bool bShowSlots, const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& _rxFrame ) = 0; |