diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-16 15:52:23 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-01-17 09:16:51 +0200 |
commit | 342d9a34a55ca40250e2e9a18a34c9fff994b9c8 (patch) | |
tree | 88257bb317c87fd596ff353f955bdc30576fe130 /sc | |
parent | a9aa6d96d2cdf0d99e47d9b509dc6efcbcc79163 (diff) |
sal_Bool->bool
Change-Id: Ibc90c5b25b7dfe4b03f92ea61d4a435edfa4f8aa
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/appoptio.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/appoptio.hxx b/sc/inc/appoptio.hxx index 75c2147497f9..12d5c15cf2ac 100644 --- a/sc/inc/appoptio.hxx +++ b/sc/inc/appoptio.hxx @@ -73,18 +73,18 @@ public: void SetDefaultObjectSizeHeight(sal_Int32 nNew) { nDefaultObjectSizeHeight = nNew; } sal_Int32 GetDefaultObjectSizeHeight() const { return nDefaultObjectSizeHeight; } - void SetShowSharedDocumentWarning( sal_Bool bNew ) { mbShowSharedDocumentWarning = bNew; } - sal_Bool GetShowSharedDocumentWarning() const { return mbShowSharedDocumentWarning; } + void SetShowSharedDocumentWarning( bool bNew ) { mbShowSharedDocumentWarning = bNew; } + bool GetShowSharedDocumentWarning() const { return mbShowSharedDocumentWarning; } ScOptionsUtil::KeyBindingType GetKeyBindingType() const { return meKeyBindingType; } void SetKeyBindingType( ScOptionsUtil::KeyBindingType e ) { meKeyBindingType = e; } const ScAppOptions& operator= ( const ScAppOptions& rOpt ); private: - FieldUnit eMetric; + FieldUnit eMetric; sal_uInt16 nLRUFuncCount; sal_uInt16* pLRUList; - SvxZoomType eZoomType; + SvxZoomType eZoomType; sal_uInt16 nZoom; bool bSynchronizeZoom; sal_uInt16 nStatusFunc; @@ -97,7 +97,7 @@ private: ScLkUpdMode eLinkMode; sal_Int32 nDefaultObjectSizeWidth; sal_Int32 nDefaultObjectSizeHeight; - sal_Bool mbShowSharedDocumentWarning; + bool mbShowSharedDocumentWarning; ScOptionsUtil::KeyBindingType meKeyBindingType; }; |