diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-12 11:25:46 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-14 14:15:03 +0200 |
commit | 206da267a4b4be09a64e98efd97df5c99f9e4acf (patch) | |
tree | d1d656e2dba82abc4d2cae167f01550ea6e34860 /sc/inc/rangeseq.hxx | |
parent | 19eb41a749de74e5cd4c567a562c50a19bf03051 (diff) |
sal_Bool->bool
Change-Id: Ifa4a4999666e5fc246fdc17aab240d5999b3cbfb
Diffstat (limited to 'sc/inc/rangeseq.hxx')
-rw-r--r-- | sc/inc/rangeseq.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sc/inc/rangeseq.hxx b/sc/inc/rangeseq.hxx index 64e9f6cfb995..bed564f8c59b 100644 --- a/sc/inc/rangeseq.hxx +++ b/sc/inc/rangeseq.hxx @@ -31,21 +31,21 @@ class ScRange; class ScRangeToSequence { public: - static sal_Bool FillLongArray( com::sun::star::uno::Any& rAny, + static bool FillLongArray( com::sun::star::uno::Any& rAny, ScDocument* pDoc, const ScRange& rRange ); - static sal_Bool FillLongArray( com::sun::star::uno::Any& rAny, + static bool FillLongArray( com::sun::star::uno::Any& rAny, const ScMatrix* pMatrix ); - static sal_Bool FillDoubleArray( com::sun::star::uno::Any& rAny, + static bool FillDoubleArray( com::sun::star::uno::Any& rAny, ScDocument* pDoc, const ScRange& rRange ); - static sal_Bool FillDoubleArray( com::sun::star::uno::Any& rAny, + static bool FillDoubleArray( com::sun::star::uno::Any& rAny, const ScMatrix* pMatrix ); - static sal_Bool FillStringArray( com::sun::star::uno::Any& rAny, + static bool FillStringArray( com::sun::star::uno::Any& rAny, ScDocument* pDoc, const ScRange& rRange ); - static sal_Bool FillStringArray( com::sun::star::uno::Any& rAny, + static bool FillStringArray( com::sun::star::uno::Any& rAny, const ScMatrix* pMatrix, SvNumberFormatter* pFormatter ); - static sal_Bool FillMixedArray( com::sun::star::uno::Any& rAny, + static bool FillMixedArray( com::sun::star::uno::Any& rAny, ScDocument* pDoc, const ScRange& rRange, - sal_Bool bAllowNV = false ); + bool bAllowNV = false ); /** @param bDataTypes Additionally to the differentiation between string and double allow @@ -53,7 +53,7 @@ public: implementation of XFormulaParser. If <FALSE/>, boolean values are treated as ordinary double values 1 (true) and 0 (false). */ - static sal_Bool FillMixedArray( com::sun::star::uno::Any& rAny, + static bool FillMixedArray( com::sun::star::uno::Any& rAny, const ScMatrix* pMatrix, bool bDataTypes = false ); }; @@ -98,7 +98,7 @@ class ScByteSequenceToString public: // rAny must contain Sequence<sal_Int8>, // may or may not contain 0-bytes at the end - static sal_Bool GetString( OUString& rString, const com::sun::star::uno::Any& rAny, + static bool GetString( OUString& rString, const com::sun::star::uno::Any& rAny, sal_uInt16 nEncoding ); }; |