Revert "remove unused parameter"
This reverts commit 7c63d52506
.
actually it is used, it's used in vba
This commit is contained in:
parent
df62945861
commit
dff7cc0d62
2 changed files with 4 additions and 3 deletions
|
@ -41,7 +41,7 @@ public:
|
|||
sal_uInt16 Parse( const String&, ScDocument* = NULL,
|
||||
sal_uInt16 nMask = SCA_VALID,
|
||||
formula::FormulaGrammar::AddressConvention eConv = formula::FormulaGrammar::CONV_OOO,
|
||||
SCTAB nDefaultTab = 0 );
|
||||
SCTAB nDefaultTab = 0, sal_Unicode cDelimiter = 0 );
|
||||
|
||||
void Format( String&, sal_uInt16 nFlags = 0, ScDocument* = NULL,
|
||||
formula::FormulaGrammar::AddressConvention eConv = formula::FormulaGrammar::CONV_OOO,
|
||||
|
|
|
@ -183,11 +183,12 @@ ScRangeList::~ScRangeList()
|
|||
|
||||
sal_uInt16 ScRangeList::Parse( const String& rStr, ScDocument* pDoc, sal_uInt16 nMask,
|
||||
formula::FormulaGrammar::AddressConvention eConv,
|
||||
SCTAB nDefaultTab )
|
||||
SCTAB nDefaultTab, sal_Unicode cDelimiter )
|
||||
{
|
||||
if ( rStr.Len() )
|
||||
{
|
||||
sal_Unicode cDelimiter = ScCompiler::GetNativeSymbol(ocSep).GetChar(0);
|
||||
if (!cDelimiter)
|
||||
cDelimiter = ScCompiler::GetNativeSymbol(ocSep).GetChar(0);
|
||||
|
||||
nMask |= SCA_VALID; // falls das jemand vergessen sollte
|
||||
sal_uInt16 nResult = (sal_uInt16)~0; // alle Bits setzen
|
||||
|
|
Loading…
Reference in a new issue