diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-04 15:53:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-07 13:53:49 +0200 |
commit | a6287e21f1dab6ae382c24ceeb4c0212b7cad2d7 (patch) | |
tree | f0bb68a88c56647fc9165ec69cc05cd5bc441ea6 /framework/inc/classes/menumanager.hxx | |
parent | c2e98d3cc9e2642d746a9933fcd91230a7378aa1 (diff) |
framework: sal_Bool->bool
Change-Id: Ia6e87e2b382bd4005637e14088bde9e809996a25
Diffstat (limited to 'framework/inc/classes/menumanager.hxx')
-rw-r--r-- | framework/inc/classes/menumanager.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/framework/inc/classes/menumanager.hxx b/framework/inc/classes/menumanager.hxx index 549948e53128..5f23d3d65fa7 100644 --- a/framework/inc/classes/menumanager.hxx +++ b/framework/inc/classes/menumanager.hxx @@ -50,8 +50,8 @@ class MenuManager : public ::cppu::WeakImplHelper1< css::frame::XStatusListener const css::uno::Reference< css::uno::XComponentContext >& rxContext, css::uno::Reference< css::frame::XFrame >& rFrame, Menu* pMenu, - sal_Bool bDelete, - sal_Bool bDeleteChildren ); + bool bDelete, + bool bDeleteChildren ); virtual ~MenuManager(); @@ -71,7 +71,7 @@ class MenuManager : public ::cppu::WeakImplHelper1< css::frame::XStatusListener static void FillMenuImages( css::uno::Reference< css::frame::XFrame >& xFrame, Menu* _pMenu, - sal_Bool bShowMenuImages + bool bShowMenuImages ); protected: @@ -84,7 +84,7 @@ class MenuManager : public ::cppu::WeakImplHelper1< css::frame::XStatusListener void UpdateSpecialWindowMenu( Menu* pMenu ); void ClearMenuDispatch(const css::lang::EventObject& Source = css::lang::EventObject(),bool _bRemoveOnly = true); void SetHdl(); - void AddMenu(PopupMenu* _pPopupMenu,const OUString& _sItemCommand,sal_uInt16 _nItemId,sal_Bool _bDelete,sal_Bool _bDeleteChildren); + void AddMenu(PopupMenu* _pPopupMenu,const OUString& _sItemCommand,sal_uInt16 _nItemId,bool _bDelete,bool _bDeleteChildren); sal_uInt16 FillItemCommand(OUString& _rItemCommand, Menu* _pMenu,sal_uInt16 _nIndex) const; struct MenuItemHandler @@ -108,12 +108,12 @@ class MenuManager : public ::cppu::WeakImplHelper1< css::frame::XStatusListener MenuItemHandler* GetMenuItemHandler( sal_uInt16 nItemId ); - sal_Bool m_bInitialized; - sal_Bool m_bDeleteMenu; - sal_Bool m_bDeleteChildren; - sal_Bool m_bActive; - sal_Bool m_bIsBookmarkMenu; - sal_Bool m_bShowMenuImages; + bool m_bInitialized; + bool m_bDeleteMenu; + bool m_bDeleteChildren; + bool m_bActive; + bool m_bIsBookmarkMenu; + bool m_bShowMenuImages; OUString m_aMenuItemCommand; Menu* m_pVCLMenu; css::uno::Reference< css::frame::XFrame > m_xFrame; |