From 7af850c89664d3c739abd244cb7016b806c0f293 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 10 Sep 2014 08:35:26 +0200 Subject: vcl: sal_Bool -> bool Change-Id: Iff4da6d6281eb9194db348ebc10fbe7718538401 --- include/svtools/headbar.hxx | 2 +- include/svtools/svmedit.hxx | 2 +- include/svtools/toolpanel/paneltabbar.hxx | 2 +- include/svtools/toolpanel/toolpaneldeck.hxx | 2 +- include/svx/srchdlg.hxx | 2 +- include/vcl/unowrap.hxx | 4 ++-- include/vcl/window.hxx | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) (limited to 'include') diff --git a/include/svtools/headbar.hxx b/include/svtools/headbar.hxx index ce4d50b077f3..63fb5e91e6f1 100644 --- a/include/svtools/headbar.hxx +++ b/include/svtools/headbar.hxx @@ -372,7 +372,7 @@ public: virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible() SAL_OVERRIDE; void SetAccessible( ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > ); - virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > GetComponentInterface( sal_Bool bCreate ) SAL_OVERRIDE; + virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > GetComponentInterface( bool bCreate ) SAL_OVERRIDE; }; diff --git a/include/svtools/svmedit.hxx b/include/svtools/svmedit.hxx index 0970e38b40aa..892d80fcc18f 100644 --- a/include/svtools/svmedit.hxx +++ b/include/svtools/svmedit.hxx @@ -34,7 +34,7 @@ public: MultiLineEdit( Window* pParent, WinBits nWinStyle = WB_LEFT | WB_BORDER ); virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > - GetComponentInterface(sal_Bool bCreate = sal_True) SAL_OVERRIDE; + GetComponentInterface(bool bCreate = true) SAL_OVERRIDE; }; diff --git a/include/svtools/toolpanel/paneltabbar.hxx b/include/svtools/toolpanel/paneltabbar.hxx index 3f1d36ccb858..190b86bf5668 100644 --- a/include/svtools/toolpanel/paneltabbar.hxx +++ b/include/svtools/toolpanel/paneltabbar.hxx @@ -81,7 +81,7 @@ namespace svt virtual void DataChanged( const DataChangedEvent& i_rDataChanedEvent ) SAL_OVERRIDE; virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > - GetComponentInterface( sal_Bool i_bCreate ) SAL_OVERRIDE; + GetComponentInterface( bool i_bCreate ) SAL_OVERRIDE; private: ::std::auto_ptr< PanelTabBar_Impl > m_pImpl; diff --git a/include/svtools/toolpanel/toolpaneldeck.hxx b/include/svtools/toolpanel/toolpaneldeck.hxx index 2eb7d8318548..1f2497c1aeec 100644 --- a/include/svtools/toolpanel/toolpaneldeck.hxx +++ b/include/svtools/toolpanel/toolpaneldeck.hxx @@ -169,7 +169,7 @@ namespace svt virtual void GetFocus() SAL_OVERRIDE; virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > - GetComponentInterface( sal_Bool i_bCreate ) SAL_OVERRIDE; + GetComponentInterface( bool i_bCreate ) SAL_OVERRIDE; private: ::std::auto_ptr< ToolPanelDeck_Impl > m_pImpl; diff --git a/include/svx/srchdlg.hxx b/include/svx/srchdlg.hxx index 6b28b5ad88bf..7ec864e14544 100644 --- a/include/svx/srchdlg.hxx +++ b/include/svx/srchdlg.hxx @@ -143,7 +143,7 @@ public: void SetSrchFlag( bool bSuccess = false ) { mbSuccess = bSuccess; } bool GetSrchFlag() { return mbSuccess; } virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > - GetComponentInterface( sal_Bool bCreate ) SAL_OVERRIDE; + GetComponentInterface( bool bCreate ) SAL_OVERRIDE; void SetSaveToModule(bool b); diff --git a/include/vcl/unowrap.hxx b/include/vcl/unowrap.hxx index fd0e9794fe63..5cd880215483 100644 --- a/include/vcl/unowrap.hxx +++ b/include/vcl/unowrap.hxx @@ -67,14 +67,14 @@ public: virtual void ReleaseAllGraphics( OutputDevice* pOutDev ) = 0; // Window - virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer> GetWindowInterface( Window* pWindow, sal_Bool bCreate ) = 0; + virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer> GetWindowInterface( Window* pWindow, bool bCreate ) = 0; virtual void SetWindowInterface( Window* pWindow, ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > xIFace ) = 0; virtual void WindowDestroyed( Window* pWindow ) = 0; // Accessibility virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > - CreateAccessible( Menu* pMenu, sal_Bool bIsMenuBar ) = 0; + CreateAccessible( Menu* pMenu, bool bIsMenuBar ) = 0; protected: ~UnoWrapperBase() {} diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index 0e0b18e53ceb..e4f49dab2d87 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -1066,7 +1066,7 @@ public: // API to set/query the component interfaces virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > - GetComponentInterface( sal_Bool bCreate = sal_True ); + GetComponentInterface( bool bCreate = true ); virtual void SetComponentInterface( ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > xIFace ); -- cgit