/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sc.hxx" //------------------------------------------------------------------------ #include #include #include #include #include #include "token.hxx" #include "tokenarray.hxx" #include "rangenam.hxx" #include "global.hxx" #include "compiler.hxx" #include "rangeutl.hxx" #include "rechead.hxx" #include "refupdat.hxx" #include "document.hxx" using namespace formula; using ::std::pair; using ::std::unary_function; using ::rtl::OUString; //======================================================================== // ScRangeData //======================================================================== // Interner ctor fuer das Suchen nach einem Index ScRangeData::ScRangeData( sal_uInt16 n ) : pCode( NULL ), nIndex( n ), bModified( false ), mnMaxRow(-1), mnMaxCol(-1) {} ScRangeData::ScRangeData( ScDocument* pDok, const String& rName, const String& rSymbol, const ScAddress& rAddress, RangeType nType, const FormulaGrammar::Grammar eGrammar ) : aName ( rName ), aUpperName ( ScGlobal::pCharClass->upper( rName ) ), pCode ( NULL ), aPos ( rAddress ), eType ( nType ), pDoc ( pDok ), nIndex ( 0 ), bModified ( false ), mnMaxRow (-1), mnMaxCol (-1) { if (rSymbol.Len() > 0) { ScCompiler aComp( pDoc, aPos ); aComp.SetGrammar(eGrammar); pCode = aComp.CompileString( rSymbol ); if( !pCode->GetCodeError() ) { pCode->Reset(); FormulaToken* p = pCode->GetNextReference(); if( p )// genau eine Referenz als erstes { if( p->GetType() == svSingleRef ) eType = eType | RT_ABSPOS; else eType = eType | RT_ABSAREA; } // ggf. den Fehlercode wg. unvollstaendiger Formel setzen! // Dies ist fuer die manuelle Eingabe aComp.CompileTokenArray(); pCode->DelRPN(); } } else { // #i63513#/#i65690# don't leave pCode as NULL. // Copy ctor default-constructs pCode if it was NULL, so it's initialized here, too, // to ensure same behavior if unnecessary copying is left out. pCode = new ScTokenArray(); } } ScRangeData::ScRangeData( ScDocument* pDok, const String& rName, const ScTokenArray& rArr, const ScAddress& rAddress, RangeType nType ) : aName ( rName ), aUpperName ( ScGlobal::pCharClass->upper( rName ) ), pCode ( new ScTokenArray( rArr ) ), aPos ( rAddress ), eType ( nType ), pDoc ( pDok ), nIndex ( 0 ), bModified ( false ), mnMaxRow (-1), mnMaxCol (-1) { if( !pCode->GetCodeError() ) { pCode->Reset(); FormulaToken* p = pCode->GetNextReference(); if( p )// genau eine Referenz als erstes { if( p->GetType() == svSingleRef ) eType = eType | RT_ABSPOS; else eType = eType | RT_ABSAREA; } } } ScRangeData::ScRangeData( ScDocument* pDok, const String& rName, const ScAddress& rTarget ) : aName ( rName ), aUpperName ( ScGlobal::pCharClass->upper( rName ) ), pCode ( new ScTokenArray() ), aPos ( rTarget ), eType ( RT_NAME ), pDoc ( pDok ), nIndex ( 0 ), bModified ( false ), mnMaxRow (-1), mnMaxCol (-1) { ScSingleRefData aRefData; aRefData.InitAddress( rTarget ); aRefData.SetFlag3D( sal_True ); pCode->AddSingleReference( aRefData ); ScCompiler aComp( pDoc, aPos, *pCode ); aComp.SetGrammar(pDoc->GetGrammar()); aComp.CompileTokenArray(); if ( !pCode->GetCodeError() ) eType |= RT_ABSPOS; } ScRangeData::ScRangeData(const ScRangeData& rScRangeData) : aName (rScRangeData.aName), aUpperName (rScRangeData.aUpperName), pCode (rScRangeData.pCode ? rScRangeData.pCode->Clone() : new ScTokenArray()), // echte Kopie erzeugen (nicht copy-ctor) aPos (rScRangeData.aPos), eType (rScRangeData.eType), pDoc (rScRangeData.pDoc), nIndex (rScRangeData.nIndex), bModified (rScRangeData.bModified), mnMaxRow (rScRangeData.mnMaxRow), mnMaxCol (rScRangeData.mnMaxCol) {} ScRangeData::~ScRangeData() { delete pCode; } void ScRangeData::GuessPosition() { // setzt eine Position, mit der alle relative Referenzen bei CalcAbsIfRel // ohne Fehler verabsolutiert werden koennen DBG_ASSERT(aPos == ScAddress(), "die Position geht jetzt verloren"); SCsCOL nMinCol = 0; SCsROW nMinRow = 0; SCsTAB nMinTab = 0; ScToken* t; pCode->Reset(); while ( ( t = static_cast(pCode->GetNextReference()) ) != NULL ) { ScSingleRefData& rRef1 = t->GetSingleRef(); if ( rRef1.IsColRel() && rRef1.nRelCol < nMinCol ) nMinCol = rRef1.nRelCol; if ( rRef1.IsRowRel() && rRef1.nRelRow < nMinRow ) nMinRow = rRef1.nRelRow; if ( rRef1.IsTabRel() && rRef1.nRelTab < nMinTab ) nMinTab = rRef1.nRelTab; if ( t->GetType() == svDoubleRef ) { ScSingleRefData& rRef2 = t->GetDoubleRef().Ref2; if ( rRef2.IsColRel() && rRef2.nRelCol < nMinCol ) nMinCol = rRef2.nRelCol; if ( rRef2.IsRowRel() && rRef2.nRelRow < nMinRow ) nMinRow = rRef2.nRelRow; if ( rRef2.IsTabRel() && rRef2.nRelTab < nMinTab ) nMinTab = rRef2.nRelTab; } } aPos = ScAddress( (SCCOL)(-nMinCol), (SCROW)(-nMinRow), (SCTAB)(-nMinTab) ); } void ScRangeData::GetSymbol( String& rSymbol, const FormulaGrammar::Grammar eGrammar ) const { ScCompiler aComp(pDoc, aPos, *pCode); aComp.SetGrammar(eGrammar); aComp.CreateStringFromTokenArray( rSymbol ); } void ScRangeData::GetSymbol( OUString& rSymbol, const FormulaGrammar::Grammar eGrammar ) const { String aStr; GetSymbol(aStr, eGrammar); rSymbol = aStr; } void ScRangeData::UpdateSymbol( rtl::OUStringBuffer& rBuffer, const ScAddress& rPos, const FormulaGrammar::Grammar eGrammar ) { ::std::auto_ptr pTemp( pCode->Clone() ); ScCompiler aComp( pDoc, rPos, *pTemp.get()); aComp.SetGrammar(eGrammar); aComp.MoveRelWrap(GetMaxCol(), GetMaxRow()); aComp.CreateStringFromTokenArray( rBuffer ); } void ScRangeData::UpdateReference( UpdateRefMode eUpdateRefMode, const ScRange& r, SCsCOL nDx, SCsROW nDy, SCsTAB nDz ) { sal_Bool bChanged = false; pCode->Reset(); if( pCode->GetNextReference() ) { sal_Bool bSharedFormula = ((eType & RT_SHARED) == RT_SHARED); ScCompiler aComp( pDoc, aPos, *pCode ); aComp.SetGrammar(pDoc->GetGrammar()); const sal_Bool bRelRef = aComp.UpdateNameReference( eUpdateRefMode, r, nDx, nDy, nDz, bChanged, bSharedFormula); if (bSharedFormula) { if (bRelRef) eType = eType | RT_SHAREDMOD; else eType = eType & ~RT_SHAREDMOD; } } bModified = bChanged; } void ScRangeData::UpdateTranspose( const ScRange& rSource, const ScAddress& rDest ) { sal_Bool bChanged = false; ScToken* t; pCode->Reset(); while ( ( t = static_cast(pCode->GetNextReference()) ) != NULL ) { if( t->GetType() != svIndex ) { SingleDoubleRefModifier aMod( *t ); ScComplexRefData& rRef = aMod.Ref(); if (!rRef.Ref1.IsColRel() && !rRef.Ref1.IsRowRel() && (!rRef.Ref1.IsFlag3D() || !rRef.Ref1.IsTabRel()) && ( t->GetType() == svSingleRef || (!rRef.Ref2.IsColRel() && !rRef.Ref2.IsRowRel() && (!rRef.Ref2.IsFlag3D() || !rRef.Ref2.IsTabRel())))) { if ( ScRefUpdate::UpdateTranspose( pDoc, rSource, rDest, rRef ) != UR_NOTHING ) bChanged = sal_True; } } } bModified = bChanged; } void ScRangeData::UpdateGrow( const ScRange& rArea, SCCOL nGrowX, SCROW nGrowY ) { sal_Bool bChanged = false; ScToken* t; pCode->Reset(); while ( ( t = static_cast(pCode->GetNextReference()) ) != NULL ) { if( t->GetType() != svIndex ) { SingleDoubleRefModifier aMod( *t ); ScComplexRefData& rRef = aMod.Ref(); if (!rRef.Ref1.IsColRel() && !rRef.Ref1.IsRowRel() && (!rRef.Ref1.IsFlag3D() || !rRef.Ref1.IsTabRel()) && ( t->GetType() == svSingleRef || (!rRef.Ref2.IsColRel() && !rRef.Ref2.IsRowRel() && (!rRef.Ref2.IsFlag3D() || !rRef.Ref2.IsTabRel())))) { if ( ScRefUpdate::UpdateGrow( rArea,nGrowX,nGrowY, rRef ) != UR_NOTHING ) bChanged = sal_True; } } } bModified = bChanged; // muss direkt hinterher ausgewertet werden } sal_Bool ScRangeData::operator== (const ScRangeData& rData) const // fuer Undo { if ( nIndex != rData.nIndex || aName != rData.aName || aPos != rData.aPos || eType != rData.eType ) return false; sal_uInt16 nLen = pCode->GetLen(); if ( nLen != rData.pCode->GetLen() ) return false; FormulaToken** ppThis = pCode->GetArray(); FormulaToken** ppOther = rData.pCode->GetArray(); for ( sal_uInt16 i=0; iIsReference( rRange ); return false; } sal_Bool ScRangeData::IsReference( ScRange& rRange, const ScAddress& rPos ) const { if ( (eType & ( RT_ABSAREA | RT_REFAREA | RT_ABSPOS ) ) && pCode ) { ::std::auto_ptr pTemp( pCode->Clone() ); ScCompiler aComp( pDoc, rPos, *pTemp); aComp.SetGrammar(pDoc->GetGrammar()); aComp.MoveRelWrap(MAXCOL, MAXROW); return pTemp->IsReference( rRange ); } return false; } sal_Bool ScRangeData::IsValidReference( ScRange& rRange ) const { if ( (eType & ( RT_ABSAREA | RT_REFAREA | RT_ABSPOS ) ) && pCode ) return pCode->IsValidReference( rRange ); return false; } void ScRangeData::UpdateTabRef(SCTAB nOldTable, sal_uInt16 nFlag, SCTAB nNewTable) { pCode->Reset(); if( pCode->GetNextReference() ) { ScRangeData* pRangeData = NULL; // must not be dereferenced sal_Bool bChanged; ScCompiler aComp( pDoc, aPos, *pCode); aComp.SetGrammar(pDoc->GetGrammar()); switch (nFlag) { case 1: // einfache InsertTab (doc.cxx) pRangeData = aComp.UpdateInsertTab(nOldTable, sal_True ); // und CopyTab (doc2.cxx) break; case 2: // einfaches delete (doc.cxx) pRangeData = aComp.UpdateDeleteTab(nOldTable, false, sal_True, bChanged); break; case 3: // move (doc2.cxx) { pRangeData = aComp.UpdateMoveTab(nOldTable, nNewTable, sal_True ); } break; default: { OSL_FAIL("ScRangeName::UpdateTabRef: Unknown Flag"); } break; } if (eType&RT_SHARED) { if (pRangeData) eType = eType | RT_SHAREDMOD; else eType = eType & ~RT_SHAREDMOD; } } } void ScRangeData::MakeValidName( String& rName ) { // strip leading invalid characters xub_StrLen nPos = 0; xub_StrLen nLen = rName.Len(); while ( nPos < nLen && !ScCompiler::IsCharFlagAllConventions( rName, nPos, SC_COMPILER_C_NAME) ) ++nPos; if ( nPos>0 ) rName.Erase(0,nPos); // if the first character is an invalid start character, precede with '_' if ( rName.Len() && !ScCompiler::IsCharFlagAllConventions( rName, 0, SC_COMPILER_C_CHAR_NAME ) ) rName.Insert('_',0); // replace invalid with '_' nLen = rName.Len(); for (nPos=0; nPos( nConv ) ); // Don't check Parse on VALID, any partial only VALID may result in // #REF! during compile later! while (aRange.Parse( rName, NULL, details) || aAddr.Parse( rName, NULL, details)) { //! Range Parse is partially valid also with invalid sheet name, //! Address Parse dito, during compile name would generate a #REF! if ( rName.SearchAndReplace( '.', '_' ) == STRING_NOTFOUND ) rName.Insert('_',0); } } } sal_Bool ScRangeData::IsNameValid( const String& rName, ScDocument* pDoc ) { /* XXX If changed, sc/source/filter/ftools/ftools.cxx * ScfTools::ConvertToScDefinedName needs to be changed too. */ xub_StrLen nPos = 0; xub_StrLen nLen = rName.Len(); if ( !nLen || !ScCompiler::IsCharFlagAllConventions( rName, nPos++, SC_COMPILER_C_CHAR_NAME ) ) return false; while ( nPos < nLen ) { if ( !ScCompiler::IsCharFlagAllConventions( rName, nPos++, SC_COMPILER_C_NAME ) ) return false; } ScAddress aAddr; ScRange aRange; for (int nConv = FormulaGrammar::CONV_UNSPECIFIED; ++nConv < FormulaGrammar::CONV_LAST; ) { ScAddress::Details details( static_cast( nConv ) ); // Don't check Parse on VALID, any partial only VALID may result in // #REF! during compile later! if (aRange.Parse( rName, pDoc, details) || aAddr.Parse( rName, pDoc, details)) return false; } return sal_True; } void ScRangeData::SetMaxRow(SCROW nRow) { mnMaxRow = nRow; } SCROW ScRangeData::GetMaxRow() const { return mnMaxRow >= 0 ? mnMaxRow : MAXROW; } void ScRangeData::SetMaxCol(SCCOL nCol) { mnMaxCol = nCol; } SCCOL ScRangeData::GetMaxCol() const { return mnMaxCol >= 0 ? mnMaxCol : MAXCOL; } sal_uInt16 ScRangeData::GetErrCode() { return pCode ? pCode->GetCodeError() : 0; } sal_Bool ScRangeData::HasReferences() const { pCode->Reset(); return sal_Bool( pCode->GetNextReference() != NULL ); } // bei TransferTab von einem in ein anderes Dokument anpassen, // um Referenzen auf die eigene Tabelle mitzubekommen void ScRangeData::TransferTabRef( SCTAB nOldTab, SCTAB nNewTab ) { long nTabDiff = (long)nNewTab - nOldTab; long nPosDiff = (long)nNewTab - aPos.Tab(); aPos.SetTab( nNewTab ); ScToken* t; pCode->Reset(); while ( ( t = static_cast(pCode->GetNextReference()) ) != NULL ) { ScSingleRefData& rRef1 = t->GetSingleRef(); if ( rRef1.IsTabRel() ) rRef1.nTab = sal::static_int_cast( rRef1.nTab + nPosDiff ); else rRef1.nTab = sal::static_int_cast( rRef1.nTab + nTabDiff ); if ( t->GetType() == svDoubleRef ) { ScSingleRefData& rRef2 = t->GetDoubleRef().Ref2; if ( rRef2.IsTabRel() ) rRef2.nTab = sal::static_int_cast( rRef2.nTab + nPosDiff ); else rRef2.nTab = sal::static_int_cast( rRef2.nTab + nTabDiff ); } } } void ScRangeData::ReplaceRangeNamesInUse( const IndexMap& rMap ) { bool bCompile = false; for ( FormulaToken* p = pCode->First(); p; p = pCode->Next() ) { if ( p->GetOpCode() == ocName ) { const sal_uInt16 nOldIndex = p->GetIndex(); IndexMap::const_iterator itr = rMap.find(nOldIndex); const sal_uInt16 nNewIndex = itr == rMap.end() ? nOldIndex : itr->second; if ( nOldIndex != nNewIndex ) { p->SetIndex( nNewIndex ); bCompile = true; } } } if ( bCompile ) { ScCompiler aComp( pDoc, aPos, *pCode); aComp.SetGrammar(pDoc->GetGrammar()); aComp.CompileTokenArray(); } } void ScRangeData::ValidateTabRefs() { // try to make sure all relative references and the reference position // are within existing tables, so they can be represented as text // (if the range of used tables is more than the existing tables, // the result may still contain invalid tables, because the relative // references aren't changed so formulas stay the same) // find range of used tables SCTAB nMinTab = aPos.Tab(); SCTAB nMaxTab = nMinTab; ScToken* t; pCode->Reset(); while ( ( t = static_cast(pCode->GetNextReference()) ) != NULL ) { ScSingleRefData& rRef1 = t->GetSingleRef(); if ( rRef1.IsTabRel() && !rRef1.IsTabDeleted() ) { if ( rRef1.nTab < nMinTab ) nMinTab = rRef1.nTab; if ( rRef1.nTab > nMaxTab ) nMaxTab = rRef1.nTab; } if ( t->GetType() == svDoubleRef ) { ScSingleRefData& rRef2 = t->GetDoubleRef().Ref2; if ( rRef2.IsTabRel() && !rRef2.IsTabDeleted() ) { if ( rRef2.nTab < nMinTab ) nMinTab = rRef2.nTab; if ( rRef2.nTab > nMaxTab ) nMaxTab = rRef2.nTab; } } } SCTAB nTabCount = pDoc->GetTableCount(); if ( nMaxTab >= nTabCount && nMinTab > 0 ) { // move position and relative tab refs // The formulas that use the name are not changed by this SCTAB nMove = nMinTab; aPos.SetTab( aPos.Tab() - nMove ); pCode->Reset(); while ( ( t = static_cast(pCode->GetNextReference()) ) != NULL ) { ScSingleRefData& rRef1 = t->GetSingleRef(); if ( rRef1.IsTabRel() && !rRef1.IsTabDeleted() ) rRef1.nTab = sal::static_int_cast( rRef1.nTab - nMove ); if ( t->GetType() == svDoubleRef ) { ScSingleRefData& rRef2 = t->GetDoubleRef().Ref2; if ( rRef2.IsTabRel() && !rRef2.IsTabDeleted() ) rRef2.nTab = sal::static_int_cast( rRef2.nTab - nMove ); } } } } extern "C" int #ifdef WNT __cdecl #endif ScRangeData_QsortNameCompare( const void* p1, const void* p2 ) { return (int) ScGlobal::GetCollator()->compareString( (*(const ScRangeData**)p1)->GetName(), (*(const ScRangeData**)p2)->GetName() ); } bool operator<(const ScRangeData& left, const ScRangeData& right) { return left.GetName() < right.GetName(); } namespace { /** * Predicate to check if the name references the specified range. */ class MatchByRange : public unary_function { const ScRange& mrRange; public: MatchByRange(const ScRange& rRange) : mrRange(rRange) {} bool operator() (const ScRangeData& r) const { return r.IsRangeAtBlock(mrRange); } }; class MatchByName : public unary_function { const OUString& mrName; public: MatchByName(const OUString& rName) : mrName(rName) {} bool operator() (const ScRangeData& r) const { return mrName.equals(r.GetName()); } }; class MatchByUpperName : public unary_function { const OUString& mrName; public: MatchByUpperName(const OUString& rName) : mrName(rName) {} bool operator() (const ScRangeData& r) const { return mrName.equals(r.GetUpperName()); } }; class MatchByIndex : public unary_function { sal_uInt16 mnIndex; public: MatchByIndex(sal_uInt16 nIndex) : mnIndex(nIndex) {} bool operator() (const ScRangeData& r) const { return mnIndex == r.GetIndex(); } }; } void ScRangeName::copyLocalNames(const TabNameMap& rNames, TabNameCopyMap& rCopy) { TabNameMap::const_iterator itr = rNames.begin(), itrEnd = rNames.end(); for (; itr != itrEnd; ++itr) { const ScRangeName* p = itr->second; if (!p || p->empty()) // Skip empty ones. continue; rCopy.insert( TabNameCopyMap::value_type(itr->first, p)); } } ScRangeName::ScRangeName() {} ScRangeName::ScRangeName(const ScRangeName& r) : maData(r.maData) {} const ScRangeData* ScRangeName::findByRange(const ScRange& rRange) const { DataType::const_iterator itr = std::find_if( maData.begin(), maData.end(), MatchByRange(rRange)); return itr == maData.end() ? NULL : &(*itr); } ScRangeData* ScRangeName::findByName(const OUString& rName) { DataType::iterator itr = std::find_if( maData.begin(), maData.end(), MatchByName(rName)); return itr == maData.end() ? NULL : &(*itr); } const ScRangeData* ScRangeName::findByName(const OUString& rName) const { DataType::const_iterator itr = std::find_if( maData.begin(), maData.end(), MatchByName(rName)); return itr == maData.end() ? NULL : &(*itr); } ScRangeData* ScRangeName::findByUpperName(const OUString& rName) { DataType::iterator itr = std::find_if( maData.begin(), maData.end(), MatchByUpperName(rName)); return itr == maData.end() ? NULL : &(*itr); } const ScRangeData* ScRangeName::findByUpperName(const OUString& rName) const { DataType::const_iterator itr = std::find_if( maData.begin(), maData.end(), MatchByUpperName(rName)); return itr == maData.end() ? NULL : &(*itr); } ScRangeData* ScRangeName::findByIndex(sal_uInt16 i) { DataType::iterator itr = std::find_if( maData.begin(), maData.end(), MatchByIndex(i)); return itr == maData.end() ? NULL : &(*itr); } void ScRangeName::UpdateReference( UpdateRefMode eUpdateRefMode, const ScRange& rRange, SCsCOL nDx, SCsROW nDy, SCsTAB nDz) { DataType::iterator itr = maData.begin(), itrEnd = maData.end(); for (; itr != itrEnd; ++itr) itr->UpdateReference(eUpdateRefMode, rRange, nDx, nDy, nDz); } void ScRangeName::UpdateTabRef(SCTAB nTable, sal_uInt16 nFlag, SCTAB nNewTable) { DataType::iterator itr = maData.begin(), itrEnd = maData.end(); for (; itr != itrEnd; ++itr) itr->UpdateTabRef(nTable, nFlag, nNewTable); } void ScRangeName::UpdateTranspose(const ScRange& rSource, const ScAddress& rDest) { DataType::iterator itr = maData.begin(), itrEnd = maData.end(); for (; itr != itrEnd; ++itr) itr->UpdateTranspose(rSource, rDest); } void ScRangeName::UpdateGrow(const ScRange& rArea, SCCOL nGrowX, SCROW nGrowY) { DataType::iterator itr = maData.begin(), itrEnd = maData.end(); for (; itr != itrEnd; ++itr) itr->UpdateGrow(rArea, nGrowX, nGrowY); } ScRangeName::const_iterator ScRangeName::begin() const { return maData.begin(); } ScRangeName::const_iterator ScRangeName::end() const { return maData.end(); } ScRangeName::iterator ScRangeName::begin() { return maData.begin(); } ScRangeName::iterator ScRangeName::end() { return maData.end(); } size_t ScRangeName::size() const { return maData.size(); } bool ScRangeName::empty() const { return maData.empty(); } bool ScRangeName::insert(ScRangeData* p) { if (!p) return false; if (!p->GetIndex()) { // Assign a new index. An index must be unique. sal_uInt16 nHigh = 0; DataType::const_iterator itr = maData.begin(), itrEnd = maData.end(); for (; itr != itrEnd; ++itr) { sal_uInt16 n = itr->GetIndex(); if (n > nHigh) nHigh = n; } p->SetIndex(nHigh + 1); } pair r = maData.insert(p); return r.second; } void ScRangeName::erase(const ScRangeData& r) { maData.erase(r); } void ScRangeName::erase(const iterator& itr) { maData.erase(itr); } void ScRangeName::clear() { maData.clear(); } bool ScRangeName::operator== (const ScRangeName& r) const { return maData == r.maData; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */