diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2009-12-05 11:07:21 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2009-12-05 11:07:21 -0500 |
commit | fc01d8a544527bcd50b1e77140fc0f084afd414d (patch) | |
tree | a9ff6153b607d79f1d635da28895692e274af7fe /sc/inc/rangelst.hxx | |
parent | c5bccb333fa388a0ad057598b3c126d35f5dae78 (diff) |
kohei04: #i107458# Removed hard-coded range separators.
Previously, range separators were hard-coded for each address convention. But
in the new code the separators are independent of address conventions or
grammars. This code was one of the left-overs of the previous implementation.
Diffstat (limited to 'sc/inc/rangelst.hxx')
-rw-r--r-- | sc/inc/rangelst.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/rangelst.hxx b/sc/inc/rangelst.hxx index e2ceba32b2f1..f68e9174705e 100644 --- a/sc/inc/rangelst.hxx +++ b/sc/inc/rangelst.hxx @@ -58,10 +58,10 @@ public: USHORT Parse( const String&, ScDocument* = NULL, USHORT nMask = SCA_VALID, formula::FormulaGrammar::AddressConvention eConv = formula::FormulaGrammar::CONV_OOO, - char cDelimiter = 0 ); + sal_Unicode cDelimiter = 0 ); void Format( String&, USHORT nFlags = 0, ScDocument* = NULL, formula::FormulaGrammar::AddressConvention eConv = formula::FormulaGrammar::CONV_OOO, - char cDelimiter = 0 ) const; + sal_Unicode cDelimiter = 0 ) const; void Join( const ScRange&, BOOL bIsInList = FALSE ); BOOL UpdateReference( UpdateRefMode, ScDocument*, const ScRange& rWhere, |