summaryrefslogtreecommitdiffstats
path: root/sc/inc/appoptio.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-01-16 15:52:23 +0200
committerNoel Grandin <noel@peralex.com>2014-01-17 09:16:51 +0200
commit342d9a34a55ca40250e2e9a18a34c9fff994b9c8 (patch)
tree88257bb317c87fd596ff353f955bdc30576fe130 /sc/inc/appoptio.hxx
parentsal_Bool->bool (diff)
downloadcore-342d9a34a55ca40250e2e9a18a34c9fff994b9c8.tar.gz
core-342d9a34a55ca40250e2e9a18a34c9fff994b9c8.zip
sal_Bool->bool
Change-Id: Ibc90c5b25b7dfe4b03f92ea61d4a435edfa4f8aa
Diffstat (limited to 'sc/inc/appoptio.hxx')
-rw-r--r--sc/inc/appoptio.hxx10
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;
};