summaryrefslogtreecommitdiff
path: root/sc/inc/rangeseq.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-27 14:20:54 +0200
committerNoel Grandin <noel@peralex.com>2015-10-28 09:22:34 +0200
commit16246ed7b280f51a39a01ded24c0d7bd59d59365 (patch)
treee506c24eeae16b384555f08818e0b62ba41e0285 /sc/inc/rangeseq.hxx
parent5d3c37b99e8bfa9256f12015152439bf4e5ebbb4 (diff)
com::sun::star->css in sc
Change-Id: I7774890f46f9343e944e34db27af8bce3b1d0915
Diffstat (limited to 'sc/inc/rangeseq.hxx')
-rw-r--r--sc/inc/rangeseq.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sc/inc/rangeseq.hxx b/sc/inc/rangeseq.hxx
index 0b328e07e08c..dc8ce018dd64 100644
--- a/sc/inc/rangeseq.hxx
+++ b/sc/inc/rangeseq.hxx
@@ -30,19 +30,19 @@ class ScRange;
class ScRangeToSequence
{
public:
- static bool FillLongArray( com::sun::star::uno::Any& rAny,
+ static bool FillLongArray( css::uno::Any& rAny,
ScDocument* pDoc, const ScRange& rRange );
- static bool FillLongArray( com::sun::star::uno::Any& rAny,
+ static bool FillLongArray( css::uno::Any& rAny,
const ScMatrix* pMatrix );
- static bool FillDoubleArray( com::sun::star::uno::Any& rAny,
+ static bool FillDoubleArray( css::uno::Any& rAny,
ScDocument* pDoc, const ScRange& rRange );
- static bool FillDoubleArray( com::sun::star::uno::Any& rAny,
+ static bool FillDoubleArray( css::uno::Any& rAny,
const ScMatrix* pMatrix );
- static bool FillStringArray( com::sun::star::uno::Any& rAny,
+ static bool FillStringArray( css::uno::Any& rAny,
ScDocument* pDoc, const ScRange& rRange );
- static bool FillStringArray( com::sun::star::uno::Any& rAny,
+ static bool FillStringArray( css::uno::Any& rAny,
const ScMatrix* pMatrix, SvNumberFormatter* pFormatter );
- static bool FillMixedArray( com::sun::star::uno::Any& rAny,
+ static bool FillMixedArray( css::uno::Any& rAny,
ScDocument* pDoc, const ScRange& rRange,
bool bAllowNV = false );
@@ -52,7 +52,7 @@ public:
implementation of XFormulaParser. If <FALSE/>, boolean values are
treated as ordinary double values 1 (true) and 0 (false).
*/
- static bool FillMixedArray( com::sun::star::uno::Any& rAny,
+ static bool FillMixedArray( css::uno::Any& rAny,
const ScMatrix* pMatrix, bool bDataTypes = false );
};
@@ -69,8 +69,8 @@ public:
*/
static bool ConvertAnyToDouble(
double & o_fVal,
- com::sun::star::uno::TypeClass & o_eClass,
- const com::sun::star::uno::Any & rAny );
+ css::uno::TypeClass & o_eClass,
+ const css::uno::Any & rAny );
};
@@ -85,7 +85,7 @@ public:
@returns a new'd ScMatrix as ScMatrixRef, NULL if rAny couldn't be read
as type Sequence<Sequence<Any>>
*/
- static ScMatrixRef CreateMixedMatrix( const com::sun::star::uno::Any & rAny );
+ static ScMatrixRef CreateMixedMatrix( const css::uno::Any & rAny );
};
@@ -94,7 +94,7 @@ class ScByteSequenceToString
public:
// rAny must contain Sequence<sal_Int8>,
// may or may not contain 0-bytes at the end
- static bool GetString( OUString& rString, const com::sun::star::uno::Any& rAny,
+ static bool GetString( OUString& rString, const css::uno::Any& rAny,
sal_uInt16 nEncoding );
};