diff options
author | Jan Holesovsky <kendy@suse.cz> | 2013-04-09 12:33:21 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2013-04-09 17:44:46 +0200 |
commit | 1dd6e02f15266560c59948c144983ca2ec06d463 (patch) | |
tree | 1cb188bd10ef7557990471d4ea1e7e8f398a9daf /framework/inc/uielement | |
parent | be91ca51ee5da0c88de1ba23b3d384731b0dd610 (diff) |
sal_Bool -> bool.
Change-Id: I12eaceb304ef67c533dc23db3f6b666bdb6a7a1f
Diffstat (limited to 'framework/inc/uielement')
-rw-r--r-- | framework/inc/uielement/toolbarmanager.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/framework/inc/uielement/toolbarmanager.hxx b/framework/inc/uielement/toolbarmanager.hxx index c4f9c7bc23f4..8b77a96cedb2 100644 --- a/framework/inc/uielement/toolbarmanager.hxx +++ b/framework/inc/uielement/toolbarmanager.hxx @@ -175,15 +175,15 @@ class ToolBarManager : public ::com::sun::star::frame::XFrameActionListener typedef BaseHash< SubToolBarControllerVector > SubToolBarToSubToolBarControllerMap; typedef ::boost::unordered_map< sal_uInt16, ::com::sun::star::uno::Reference< com::sun::star::container::XIndexAccess > > MenuDescriptionMap; - sal_Bool m_bDisposed : 1, - m_bSmallSymbols : 1, - m_bModuleIdentified : 1, - m_bAddedToTaskPaneList : 1, - m_bVerticalTextEnabled : 1, - m_bFrameActionRegistered : 1, - m_bUpdateControllers : 1; - sal_Bool m_bImageOrientationRegistered : 1, - m_bImageMirrored : 1; + bool m_bDisposed : 1, + m_bSmallSymbols : 1, + m_bModuleIdentified : 1, + m_bAddedToTaskPaneList : 1, + m_bVerticalTextEnabled : 1, + m_bFrameActionRegistered : 1, + m_bUpdateControllers : 1, + m_bImageOrientationRegistered : 1, + m_bImageMirrored : 1; long m_lImageRotation; ToolBar* m_pToolBar; OUString m_aModuleIdentifier; |