diff options
author | Guillaume Poussel <gpoussel@gmail.com> | 2011-02-07 20:20:44 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2011-02-08 18:45:17 +0100 |
commit | 4d99badbbdbb2b48dd3451115e5ce034327adb4a (patch) | |
tree | 3eb66cd07a032b2dd32898a23a5bb861aed8ba5f | |
parent | 9b1ae08c4fbab2e93a350bd2bc3ea7d238f5f3a6 (diff) |
Clean-up bogus comments in calc.
-rw-r--r-- | chart2/source/controller/dialogs/dlg_DataEditor.cxx | 2 | ||||
-rw-r--r-- | chart2/source/controller/dialogs/tp_Scale.cxx | 2 | ||||
-rw-r--r-- | chart2/source/controller/drawinglayer/DrawViewWrapper.cxx | 1 | ||||
-rw-r--r-- | chart2/source/controller/drawinglayer/ViewElementListProvider.cxx | 2 | ||||
-rw-r--r-- | chart2/source/controller/main/ChartController.cxx | 2 | ||||
-rw-r--r-- | chart2/source/controller/main/ChartTransferable.cxx | 1 | ||||
-rw-r--r-- | chart2/source/model/filter/XMLFilter.cxx | 2 | ||||
-rw-r--r-- | chart2/source/view/charttypes/Splines.cxx | 2 | ||||
-rw-r--r-- | chart2/source/view/main/ShapeFactory.cxx | 2 | ||||
-rw-r--r-- | sc/inc/document.hxx | 3 | ||||
-rw-r--r-- | sc/inc/rechead.hxx | 2 | ||||
-rw-r--r-- | sc/inc/sc.hrc | 7 | ||||
-rw-r--r-- | sc/inc/servuno.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/cell.cxx | 8 | ||||
-rw-r--r-- | sc/source/core/data/cell2.cxx | 6 | ||||
-rw-r--r-- | sc/source/core/data/column.cxx | 12 | ||||
-rw-r--r-- | sc/source/core/data/column3.cxx | 8 | ||||
-rw-r--r-- | sc/source/core/data/conditio.cxx | 4 | ||||
-rw-r--r-- | sc/source/core/data/documen2.cxx | 6 | ||||
-rw-r--r-- | sc/source/core/data/documen3.cxx | 4 |
20 files changed, 37 insertions, 41 deletions
diff --git a/chart2/source/controller/dialogs/dlg_DataEditor.cxx b/chart2/source/controller/dialogs/dlg_DataEditor.cxx index f2073c4e5..8f3502204 100644 --- a/chart2/source/controller/dialogs/dlg_DataEditor.cxx +++ b/chart2/source/controller/dialogs/dlg_DataEditor.cxx @@ -94,7 +94,7 @@ DataEditor::DataEditor( bReadOnly = xStor->isReadonly(); SetReadOnly( bReadOnly ); - // #101228# change buttons to flat-look if set so by user + // change buttons to flat-look if set so by user SvtMiscOptions aMiscOptions; const sal_Int16 nStyle( aMiscOptions.GetToolboxStyle() ); // react on changes diff --git a/chart2/source/controller/dialogs/tp_Scale.cxx b/chart2/source/controller/dialogs/tp_Scale.cxx index a26c21509..9ade73b44 100644 --- a/chart2/source/controller/dialogs/tp_Scale.cxx +++ b/chart2/source/controller/dialogs/tp_Scale.cxx @@ -440,7 +440,7 @@ void ScaleTabPage::SetNumFormatter( SvNumberFormatter* pFormatter ) aFmtFldStepMain.SetFormatter( pNumFormatter ); aFmtFldOrigin.SetFormatter( pNumFormatter ); - // #101318#, #i6278# allow more decimal places than the output format. As + // #i6278# allow more decimal places than the output format. As // the numbers shown in the edit fields are used for input, it makes more // sense to display the values in the input format rather than the output // format. diff --git a/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx b/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx index 591890312..3f87631a7 100644 --- a/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx +++ b/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx @@ -124,7 +124,6 @@ DrawViewWrapper::DrawViewWrapper( SdrModel* pSdrModel, OutputDevice* pOut, bool , m_apOutliner( SdrMakeOutliner( OUTLINERMODE_TEXTOBJECT, pSdrModel ) ) , m_bRestoreMapMode( false ) { - // #114898# SetBufferedOutputAllowed(true); SetBufferedOverlayAllowed(true); diff --git a/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx b/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx index e7edfa8cc..577d0cc51 100644 --- a/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx +++ b/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx @@ -222,7 +222,7 @@ FontList* ViewElementListProvider::getFontList() const if(!m_pFontList) { OutputDevice* pRefDev = m_pDrawModelWrapper ? m_pDrawModelWrapper->getReferenceDevice() : NULL; - OutputDevice* pDefaultOut = Application::GetDefaultDevice(); // #67730# + OutputDevice* pDefaultOut = Application::GetDefaultDevice(); m_pFontList = new FontList( pRefDev ? pRefDev : pDefaultOut , pRefDev ? pDefaultOut : NULL , FALSE ); diff --git a/chart2/source/controller/main/ChartController.cxx b/chart2/source/controller/main/ChartController.cxx index 35d68b63e..74f561a1e 100644 --- a/chart2/source/controller/main/ChartController.cxx +++ b/chart2/source/controller/main/ChartController.cxx @@ -1069,7 +1069,7 @@ bool lcl_isFormatObjectCommand( const rtl::OString& aCommand ) , const uno::Sequence< beans::PropertyValue >& rArgs ) throw (uno::RuntimeException) { - //@todo avoid OString (see Mathias mail on bug #104387#) + //@todo avoid OString rtl::OString aCommand( rtl::OUStringToOString( rURL.Path, RTL_TEXTENCODING_ASCII_US ) ); if(aCommand.equals("Paste")) diff --git a/chart2/source/controller/main/ChartTransferable.cxx b/chart2/source/controller/main/ChartTransferable.cxx index 3737ef757..ad8b0d950 100644 --- a/chart2/source/controller/main/ChartTransferable.cxx +++ b/chart2/source/controller/main/ChartTransferable.cxx @@ -128,7 +128,6 @@ sal_Bool ChartTransferable::WriteObject( SotStorageStreamRef& rxOStm, void* pUse { rxOStm->SetBufferSize( 0xff00 ); - // #108584# // for the changed pool defaults from drawing layer pool set those // attributes as hard attributes to preserve them for saving const SfxItemPool& rItemPool = pMarkedObjModel->GetItemPool(); diff --git a/chart2/source/model/filter/XMLFilter.cxx b/chart2/source/model/filter/XMLFilter.cxx index 9c6a8f6ec..f70bd44bc 100644 --- a/chart2/source/model/filter/XMLFilter.cxx +++ b/chart2/source/model/filter/XMLFilter.cxx @@ -381,7 +381,7 @@ sal_Int32 XMLFilter::impl_Import( /** property map for import info set */ comphelper::PropertyMapEntry aImportInfoMap[] = { - // #80365# necessary properties for XML progress bar at load time + // necessary properties for XML progress bar at load time { MAP_LEN( "ProgressRange" ), 0, &::getCppuType((const sal_Int32*)0), ::com::sun::star::beans::PropertyAttribute::MAYBEVOID, 0}, { MAP_LEN( "ProgressMax" ), 0, &::getCppuType((const sal_Int32*)0), ::com::sun::star::beans::PropertyAttribute::MAYBEVOID, 0}, { MAP_LEN( "ProgressCurrent" ), 0, &::getCppuType((const sal_Int32*)0), ::com::sun::star::beans::PropertyAttribute::MAYBEVOID, 0}, diff --git a/chart2/source/view/charttypes/Splines.cxx b/chart2/source/view/charttypes/Splines.cxx index 6112c812b..5d001c100 100644 --- a/chart2/source/view/charttypes/Splines.cxx +++ b/chart2/source/view/charttypes/Splines.cxx @@ -128,7 +128,7 @@ lcl_SplineCalculation::lcl_SplineCalculation( { ::rtl::math::setInf( &m_fLastInterpolatedValue, sal_False ); - // #108301# remove points that have equal x-values + // remove points that have equal x-values m_aPoints.erase( ::std::unique( m_aPoints.begin(), m_aPoints.end(), lcl_EqualsFirstDoubleOfPair< double >() ), m_aPoints.end() ); diff --git a/chart2/source/view/main/ShapeFactory.cxx b/chart2/source/view/main/ShapeFactory.cxx index 546588231..dff6efd7a 100644 --- a/chart2/source/view/main/ShapeFactory.cxx +++ b/chart2/source/view/main/ShapeFactory.cxx @@ -1609,7 +1609,7 @@ uno::Reference< drawing::XShapes > xTarget->add(xShape); - //it is necessary to set the transform matrix to initialize the scene properly (bug #106316#) + //it is necessary to set the transform matrix to initialize the scene properly //otherwise all objects which are placed into this Group will not be visible //the following should be unnecessary after a the bug is fixed { diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index 02d27c366..75863d1ee 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -688,7 +688,6 @@ public: sal_Int64 GetNewUnoId(); void AddUnoRefChange( sal_Int64 nId, const ScRangeList& rOldRanges ); - // #109985# sal_Bool IsChart( const SdrObject* pObject ); SC_DLLPUBLIC void UpdateAllCharts(); @@ -1367,7 +1366,7 @@ public: SCCOL GetNextDifferentChangedCol( SCTAB nTab, SCCOL nStart) const; - // #108550#; if bCareManualSize is set then the row + // if bCareManualSize is set then the row // heights are compared only if the manual size flag for // the row is set. If the bCareManualSize is not set then // the row heights are always compared. diff --git a/sc/inc/rechead.hxx b/sc/inc/rechead.hxx index dc3aea349..36bf698a6 100644 --- a/sc/inc/rechead.hxx +++ b/sc/inc/rechead.hxx @@ -111,7 +111,7 @@ #define SC_VERSION_EDITPOOL 0x0203 // EditCells with EditPool #define SC_SUBTOTAL_BUGFIX 0x0204 // bSubTotal of formula cell (true) //-------------------------------- ab 5.2 -#define SC_CONVERT_RECALC_ON_LOAD 0x0205 // #73616# CONVERT function recalculated on each load +#define SC_CONVERT_RECALC_ON_LOAD 0x0205 // CONVERT function recalculated on each load //-------------------------------- #define SC_CURRENT_VERSION 0x0205 diff --git a/sc/inc/sc.hrc b/sc/inc/sc.hrc index d684d055a..5274e75b4 100644 --- a/sc/inc/sc.hrc +++ b/sc/inc/sc.hrc @@ -571,10 +571,10 @@ #define SID_FOCUS_INPUTLINE (SC_VIEW_START + 89) #define SID_SELECT_TABLES (SC_VIEW_START + 90) -// #97776# new entry "Filter..." in DP popup menu +// new entry "Filter..." in DP popup menu #define SID_DP_FILTER (SC_VIEW_START + 91) -// #101160# Replace cell contents warning +// Replace cell contents warning #define SID_SC_INPUT_REPLCELLSWARN (SC_VIEW_START + 92) // additional IDs for list/range validity @@ -1239,14 +1239,13 @@ #define SCSTR_CHG_PROTECT (STR_START + 86) #define SCSTR_CHG_UNPROTECT (STR_START + 87) -// #98185# #define STR_CAPTION_DEFAULT_TEXT (STR_START + 88) // dialog: Select Sheets #define STR_DLG_SELECTTABLES_TITLE (STR_START + 89) #define STR_DLG_SELECTTABLES_LBNAME (STR_START + 90) -// #101160# Replace cell contents warning +// Replace cell contents warning #define STR_REPLCELLSWARN (STR_START + 91) #define SCSTR_DPFUNCLISTBOX (STR_START + 92) diff --git a/sc/inc/servuno.hxx b/sc/inc/servuno.hxx index 0db3cac6c..1f4811827 100644 --- a/sc/inc/servuno.hxx +++ b/sc/inc/servuno.hxx @@ -71,7 +71,7 @@ class ScDocShell; #define SC_SERVICE_IMAP_CIRC 25 #define SC_SERVICE_IMAP_POLY 26 -// #100263# Support creation of GraphicObjectResolver and EmbeddedObjectResolver +// Support creation of GraphicObjectResolver and EmbeddedObjectResolver #define SC_SERVICE_EXPORT_GOR 27 #define SC_SERVICE_IMPORT_GOR 28 #define SC_SERVICE_EXPORT_EOR 29 diff --git a/sc/source/core/data/cell.cxx b/sc/source/core/data/cell.cxx index 83ec191ea..1f2fda4fa 100644 --- a/sc/source/core/data/cell.cxx +++ b/sc/source/core/data/cell.cxx @@ -941,7 +941,7 @@ void ScFormulaCell::Compile( const String& rFormula, BOOL bNoListening, if( !pCode->GetCodeError() ) { if ( !pCode->GetLen() && aResult.GetHybridFormula().Len() && rFormula == aResult.GetHybridFormula() ) - { // #65994# nicht rekursiv CompileTokenArray/Compile/CompileTokenArray + { // nicht rekursiv CompileTokenArray/Compile/CompileTokenArray if ( rFormula.GetChar(0) == '=' ) pCode->AddBad( rFormula.GetBuffer() + 1 ); else @@ -1159,7 +1159,7 @@ void ScFormulaCell::Interpret() return; } - // #63038# no multiple interprets for GetErrCode, IsValue, GetValue and + // no multiple interprets for GetErrCode, IsValue, GetValue and // different entry point recursions. Would also lead to premature // convergence in iterations. if (pDocument->GetRecursionHelper().GetIteration() && nSeenInIteration == @@ -1733,12 +1733,12 @@ void ScFormulaCell::Notify( SvtBroadcaster&, const SfxHint& rHint) bForceTrack = !bDirty; SetDirtyVar(); } - // #35962# Don't remove from FormulaTree to put in FormulaTrack to + // Don't remove from FormulaTree to put in FormulaTrack to // put in FormulaTree again and again, only if necessary. // Any other means except RECALCMODE_ALWAYS by which a cell could // be in FormulaTree if it would notify other cells through // FormulaTrack which weren't in FormulaTrack/FormulaTree before?!? - // #87866# Yes. The new TableOpDirty made it necessary to have a + // Yes. The new TableOpDirty made it necessary to have a // forced mode where formulas may still be in FormulaTree from // TableOpDirty but have to notify dependents for normal dirty. if ( (bForceTrack || !pDocument->IsInFormulaTree( this ) diff --git a/sc/source/core/data/cell2.cxx b/sc/source/core/data/cell2.cxx index da7ac34c2..8a629df29 100644 --- a/sc/source/core/data/cell2.cxx +++ b/sc/source/core/data/cell2.cxx @@ -1518,7 +1518,7 @@ BOOL lcl_IsRangeNameInUse(USHORT nIndex, ScTokenArray* pCode, ScRangeName* pName return TRUE; else { - // RangeData kann Null sein in bestimmten Excel-Dateien (#31168#) + // RangeData kann Null sein in bestimmten Excel-Dateien ScRangeData* pSubName = pNames->FindIndex(p->GetIndex()); if (pSubName && lcl_IsRangeNameInUse(nIndex, pSubName->GetCode(), pNames)) @@ -1604,7 +1604,7 @@ void ScFormulaCell::CompileDBFormula( BOOL bCreateFormulaString ) switch ( p->GetOpCode() ) { case ocBad: // DB-Bereich evtl. zugefuegt - case ocColRowName: // #36762# falls Namensgleichheit + case ocColRowName: // falls Namensgleichheit case ocDBArea: // DB-Bereich bRecompile = TRUE; break; @@ -1655,7 +1655,7 @@ void ScFormulaCell::CompileNameFormula( BOOL bCreateFormulaString ) switch ( p->GetOpCode() ) { case ocBad: // RangeName evtl. zugefuegt - case ocColRowName: // #36762# falls Namensgleichheit + case ocColRowName: // falls Namensgleichheit bRecompile = TRUE; break; default: diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx index 039e6dee5..70b605eea 100644 --- a/sc/source/core/data/column.cxx +++ b/sc/source/core/data/column.cxx @@ -969,7 +969,7 @@ void ScColumn::SwapRow(SCROW nRow1, SCROW nRow2) } } - // hier kein UpdateReference wegen #30529# - mitsortiert werden nur noch relative Referenzen + // mitsortiert werden nur noch relative Referenzen // long dy = (long)nRow2 - (long)nRow1; /* Create clone of pCell1 at position of pCell2 (pCell1 exists always, see @@ -1143,14 +1143,14 @@ void ScColumn::InsertRow( SCROW nStartRow, SCSIZE nSize ) for ( ; i < nCount; i++) { SCROW nOldRow = pItems[i].nRow; - // #43940# Aenderung Quelle broadcasten + // Aenderung Quelle broadcasten if ( nLastBroadcast != nOldRow ) { // direkt aufeinanderfolgende nicht doppelt broadcasten rAddress.SetRow( nOldRow ); pDocument->AreaBroadcast( aHint ); } SCROW nNewRow = (pItems[i].nRow += nSize); - // #43940# Aenderung Ziel broadcasten + // Aenderung Ziel broadcasten rAddress.SetRow( nNewRow ); pDocument->AreaBroadcast( aHint ); nLastBroadcast = nNewRow; @@ -1514,7 +1514,7 @@ void ScColumn::SwapCol(ScColumn& rCol) rCol.pAttrArray = pAttrArray; pAttrArray = pTempAttr; - // #38415# AttrArray muss richtige Spaltennummer haben + // AttrArray muss richtige Spaltennummer haben pAttrArray->SetCol(nCol); rCol.pAttrArray->SetCol(rCol.nCol); @@ -1595,7 +1595,7 @@ void ScColumn::MoveTo(SCROW nStartRow, SCROW nEndRow, ScColumn& rCol) ScAddress& rAddress = aHint.GetAddress(); ScNoteCell* pNoteCell = new ScNoteCell; // Dummy like in DeleteRange - // #121990# must iterate backwards, because indexes of following cells become invalid + // must iterate backwards, because indexes of following cells become invalid for (EntryPosPairs::reverse_iterator it( aEntries.rbegin()); it != aEntries.rend(); ++it) { @@ -1640,7 +1640,7 @@ void ScColumn::UpdateReference( UpdateRefMode eUpdateRefMode, SCCOL nCol1, SCROW } else { - // #90279# For performance reasons two loop bodies instead of + // For performance reasons two loop bodies instead of // testing for update mode in each iteration. // Anyways, this is still a bottleneck on large arrays with few // formulas cells. diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx index 118334151..15d61b284 100644 --- a/sc/source/core/data/column3.cxx +++ b/sc/source/core/data/column3.cxx @@ -329,11 +329,11 @@ void ScColumn::DeleteRow( SCROW nStartRow, SCSIZE nSize ) for ( ; i < nCount; i++ ) { SCROW nOldRow = pItems[i].nRow; - // #43940# Aenderung Quelle broadcasten + // Aenderung Quelle broadcasten rAddress.SetRow( nOldRow ); pDocument->AreaBroadcast( aHint ); SCROW nNewRow = (pItems[i].nRow -= nSize); - // #43940# Aenderung Ziel broadcasten + // Aenderung Ziel broadcasten if ( nLastBroadcast != nNewRow ) { // direkt aufeinanderfolgende nicht doppelt broadcasten rAddress.SetRow( nNewRow ); @@ -875,7 +875,7 @@ ScBaseCell* ScColumn::CloneCell(SCSIZE nIndex, USHORT nFlags, ScDocument& rDestD } else if ( (bCloneValue || bCloneDateTime || bCloneString) && !rDestDoc.IsUndo() ) { - // #48491# ins Undo-Dokument immer nur die Original-Zelle kopieren, + // ins Undo-Dokument immer nur die Original-Zelle kopieren, // aus Formeln keine Value/String-Zellen erzeugen ScFormulaCell& rForm = (ScFormulaCell&)rSource; USHORT nErr = rForm.GetErrCode(); @@ -901,7 +901,7 @@ ScBaseCell* ScColumn::CloneCell(SCSIZE nIndex, USHORT nFlags, ScDocument& rDestD { String aString; rForm.GetString( aString ); - // #33224# do not clone empty string + // do not clone empty string if (aString.Len() > 0) { if ( rForm.IsMultilineResult() ) diff --git a/sc/source/core/data/conditio.cxx b/sc/source/core/data/conditio.cxx index 06c8ab9d3..6b1db6ed8 100644 --- a/sc/source/core/data/conditio.cxx +++ b/sc/source/core/data/conditio.cxx @@ -426,7 +426,7 @@ void ScConditionEntry::CompileAll() void ScConditionEntry::CompileXML() { - // #b4974740# First parse the formula source position if it was stored as text + // First parse the formula source position if it was stored as text if ( aSrcString.Len() ) { @@ -1459,7 +1459,7 @@ void ScConditionalFormat::DoRepaint( const ScRange* pModified ) { if ( !bAttrTested ) { - // #116562# Look at the style's content only if the repaint is necessary + // Look at the style's content only if the repaint is necessary // for any condition, to avoid the time-consuming Find() if there are many // conditional formats and styles. for (USHORT nEntry=0; nEntry<nEntryCount; nEntry++) diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx index 33e5b83a4..56b77bf99 100644 --- a/sc/source/core/data/documen2.cxx +++ b/sc/source/core/data/documen2.cxx @@ -779,7 +779,7 @@ BOOL ScDocument::MoveTab( SCTAB nOldPos, SCTAB nNewPos ) for (i = 0; i <= MAXTAB; i++) if (pTab[i]) pTab[i]->StartAllListeners(); - // #81844# sheet names of references may not be valid until sheet is moved + // sheet names of references may not be valid until sheet is moved pChartListenerCollection->UpdateScheduledSeriesRanges(); SetDirty(); SetAutoCalc( bOldAutoCalc ); @@ -868,7 +868,7 @@ BOOL ScDocument::CopyTab( SCTAB nOldPos, SCTAB nNewPos, const ScMarkData* pOnlyM pCondFormList->UpdateReference( URM_INSDEL, aRange, 0,0,1 ); if ( pValidationList ) pValidationList->UpdateReference( URM_INSDEL, aRange, 0,0,1 ); - // #81844# sheet names of references may not be valid until sheet is copied + // sheet names of references may not be valid until sheet is copied pChartListenerCollection->UpdateScheduledSeriesRanges(); } else @@ -891,7 +891,7 @@ BOOL ScDocument::CopyTab( SCTAB nOldPos, SCTAB nNewPos, const ScMarkData* pOnlyM pTab[nOldPos]->UpdateInsertTab(nNewPos); pTab[nOldPos]->UpdateCompile(); - pTab[nNewPos]->UpdateCompile( TRUE ); // #67996# maybe already compiled in Clone, but used names need recompilation + pTab[nNewPos]->UpdateCompile( TRUE ); // maybe already compiled in Clone, but used names need recompilation SetNoListening( FALSE ); pTab[nOldPos]->StartAllListeners(); pTab[nNewPos]->StartAllListeners(); diff --git a/sc/source/core/data/documen3.cxx b/sc/source/core/data/documen3.cxx index 39dffad7f..1d678f4c4 100644 --- a/sc/source/core/data/documen3.cxx +++ b/sc/source/core/data/documen3.cxx @@ -728,7 +728,7 @@ void ScDocument::RemoveUnoObject( SfxListener& rObject ) if ( bInUnoBroadcast ) { - // #107294# Broadcasts from ScDocument::BroadcastUno are the only way that + // Broadcasts from ScDocument::BroadcastUno are the only way that // uno object methods are called without holding a reference. // // If RemoveUnoObject is called from an object dtor in the finalizer thread @@ -901,7 +901,7 @@ void ScDocument::UpdateReference( UpdateRefMode eUpdateRefMode, } SetExpandRefs( bExpandRefsOld ); - // #30428# after moving, no clipboard move ref-updates are possible + // after moving, no clipboard move ref-updates are possible if ( eUpdateRefMode != URM_COPY && IsClipboardSource() ) { ScDocument* pClipDoc = SC_MOD()->GetClipDoc(); |