Kaydet (Commit) 7c63d525 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

remove unused parameter

Change-Id: Ica799b8a036a3055ea50ecc90ca85acc1ec51f21
üst 4b586bd6
...@@ -41,7 +41,7 @@ public: ...@@ -41,7 +41,7 @@ public:
sal_uInt16 Parse( const String&, ScDocument* = NULL, sal_uInt16 Parse( const String&, ScDocument* = NULL,
sal_uInt16 nMask = SCA_VALID, sal_uInt16 nMask = SCA_VALID,
formula::FormulaGrammar::AddressConvention eConv = formula::FormulaGrammar::CONV_OOO, formula::FormulaGrammar::AddressConvention eConv = formula::FormulaGrammar::CONV_OOO,
SCTAB nDefaultTab = 0, sal_Unicode cDelimiter = 0 ); SCTAB nDefaultTab = 0 );
void Format( String&, sal_uInt16 nFlags = 0, ScDocument* = NULL, void Format( String&, sal_uInt16 nFlags = 0, ScDocument* = NULL,
formula::FormulaGrammar::AddressConvention eConv = formula::FormulaGrammar::CONV_OOO, formula::FormulaGrammar::AddressConvention eConv = formula::FormulaGrammar::CONV_OOO,
......
...@@ -185,12 +185,11 @@ ScRangeList::~ScRangeList() ...@@ -185,12 +185,11 @@ ScRangeList::~ScRangeList()
sal_uInt16 ScRangeList::Parse( const String& rStr, ScDocument* pDoc, sal_uInt16 nMask, sal_uInt16 ScRangeList::Parse( const String& rStr, ScDocument* pDoc, sal_uInt16 nMask,
formula::FormulaGrammar::AddressConvention eConv, formula::FormulaGrammar::AddressConvention eConv,
SCTAB nDefaultTab, sal_Unicode cDelimiter ) SCTAB nDefaultTab )
{ {
if ( rStr.Len() ) if ( rStr.Len() )
{ {
if (!cDelimiter) sal_Unicode cDelimiter = ScCompiler::GetNativeSymbol(ocSep).GetChar(0);
cDelimiter = ScCompiler::GetNativeSymbol(ocSep).GetChar(0);
nMask |= SCA_VALID; // falls das jemand vergessen sollte nMask |= SCA_VALID; // falls das jemand vergessen sollte
sal_uInt16 nResult = (sal_uInt16)~0; // alle Bits setzen sal_uInt16 nResult = (sal_uInt16)~0; // alle Bits setzen
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment