diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-16 13:25:37 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-01-17 09:16:50 +0200 |
commit | 8843078a1a9a3126d6d90cde5b98b171963446c8 (patch) | |
tree | d94b4584dc2edbab7d6a613c61aa62c8daad2a1e /sc/inc/appoptio.hxx | |
parent | 4469a9c3e1df7f5e2eb79c30ba31b9be755279ab (diff) |
sal_Bool -> bool
Change-Id: Ic17c27323279f01cf35701bcd5aa4d89bc18a74c
Diffstat (limited to 'sc/inc/appoptio.hxx')
-rw-r--r-- | sc/inc/appoptio.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/appoptio.hxx b/sc/inc/appoptio.hxx index fad7496a591c..68bd62e96b59 100644 --- a/sc/inc/appoptio.hxx +++ b/sc/inc/appoptio.hxx @@ -43,8 +43,8 @@ public: sal_uInt16 GetZoom() const { return nZoom; } void SetZoomType( SvxZoomType eNew ) { eZoomType = eNew; } SvxZoomType GetZoomType() const { return eZoomType; } - void SetSynchronizeZoom( sal_Bool bNew ) { bSynchronizeZoom = bNew; } - sal_Bool GetSynchronizeZoom() const { return bSynchronizeZoom; } + void SetSynchronizeZoom( bool bNew ) { bSynchronizeZoom = bNew; } + bool GetSynchronizeZoom() const { return bSynchronizeZoom; } sal_uInt16 GetLRUFuncListCount() const { return nLRUFuncCount; } sal_uInt16* GetLRUFuncList() const { return pLRUList; } void SetLRUFuncList( const sal_uInt16* pList, @@ -86,7 +86,7 @@ private: sal_uInt16* pLRUList; SvxZoomType eZoomType; sal_uInt16 nZoom; - sal_Bool bSynchronizeZoom; + bool bSynchronizeZoom; sal_uInt16 nStatusFunc; sal_Bool bAutoComplete; sal_Bool bDetectiveAuto; |