diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 12:53:51 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 12:53:51 +0100 |
commit | e8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch) | |
tree | dae18a3acbf29c192118e7c003f80df8da8e21ae /include/vcl/syswin.hxx | |
parent | 1c8402465cfd4df862409dc310f5f099d044c4d8 (diff) |
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'include/vcl/syswin.hxx')
-rw-r--r-- | include/vcl/syswin.hxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/include/vcl/syswin.hxx b/include/vcl/syswin.hxx index 8223483cbac3..9b25c950a522 100644 --- a/include/vcl/syswin.hxx +++ b/include/vcl/syswin.hxx @@ -143,19 +143,19 @@ private: Size maOrgSize; Size maRollUpOutSize; Size maMinOutSize; - sal_Bool mbPined; - sal_Bool mbRollUp; - sal_Bool mbRollFunc; - sal_Bool mbDockBtn; - sal_Bool mbHideBtn; - sal_Bool mbSysChild; + bool mbPined; + bool mbRollUp; + bool mbRollFunc; + bool mbDockBtn; + bool mbHideBtn; + bool mbSysChild; sal_uInt16 mnMenuBarMode; sal_uInt16 mnIcon; ImplData* mpImplData; public: using Window::ImplIsInTaskPaneList; - SAL_DLLPRIVATE sal_Bool ImplIsInTaskPaneList( Window* pWin ); + SAL_DLLPRIVATE bool ImplIsInTaskPaneList( Window* pWin ); private: // Default construction is forbidden and not implemented. @@ -178,7 +178,7 @@ public: virtual bool Notify( NotifyEvent& rNEvt ); virtual bool PreNotify( NotifyEvent& rNEvt ); - virtual sal_Bool Close(); + virtual bool Close(); virtual void TitleButtonClick( sal_uInt16 nButton ); virtual void Pin(); virtual void Roll(); @@ -190,18 +190,18 @@ public: // separately from the window title void SetRepresentedURL( const OUString& ); - void EnableSaveBackground( sal_Bool bSave = sal_True ); - sal_Bool IsSaveBackgroundEnabled() const; + void EnableSaveBackground( bool bSave = true ); + bool IsSaveBackgroundEnabled() const; - void ShowTitleButton( sal_uInt16 nButton, sal_Bool bVisible = sal_True ); - sal_Bool IsTitleButtonVisible( sal_uInt16 nButton ) const; + void ShowTitleButton( sal_uInt16 nButton, bool bVisible = true ); + bool IsTitleButtonVisible( sal_uInt16 nButton ) const; - void SetPin( sal_Bool bPin ); - sal_Bool IsPined() const { return mbPined; } + void SetPin( bool bPin ); + bool IsPined() const { return mbPined; } void RollUp(); void RollDown(); - sal_Bool IsRollUp() const { return mbRollUp; } + bool IsRollUp() const { return mbRollUp; } void SetRollUpOutputSizePixel( const Size& rSize ) { maRollUpOutSize = rSize; } Size GetRollUpOutputSizePixel() const { return maRollUpOutSize; } |