<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Kohei,</div><div><br></div><div>Help!</div><div><br></div><div>From calc/sc/inc/rangelst.hxx:</div><div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>typedef ScRange* ScRangePtr;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>typedef ::std::vector&lt; ScRangePtr &gt; ScRangeListBase;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>class SC_DLLPUBLIC ScRangeList : public ScRangeListBase, public SvRefBase { ... }</div></div><div><br></div><div>I'm changing the definition of ScRangeListBase from a DECLARE_LIST() to a ::std:vector&lt;&gt;. For the most part the change is going well; however, we have a method in the class named "Join" that looks like it's trying to merge two lists together.</div><div><br></div><div>My issues are related to nOldPos:</div><div><br></div><div>1) I might need to write code to do the GetPos(); this just returns the Index to the address given. This is easy and not a big concern.</div><div><br></div><div>2) The Remove( nOldPos ) can be replaced with an erase( begin() + nOldPos ); however, at this point I believe that it's removing the object because it's in both lists (they have the same address). I'm thinking that destroying one instance will destroy the 2nd which would make this code incorrect. (I know, it's been working for years; I just don't see how).</div><div><br></div><div>3) Why is this recursive? This my have something to do with ScRange acting like a ScRangeList; which is my next task to find out why.</div><div><br></div><div>4) All the comments being in German isn't helping...&nbsp;</div><div><br></div><div>5) I'm thinking the Seek() is related to updating the position for the List&nbsp;<span class="Apple-style-span" style="font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; ">iterator. vector&lt;&gt; uses a different&nbsp;</span><span class="Apple-style-span" style="font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; ">iterator process so this can be removed; however, do I need to do something to update the vector&lt;&gt;'s&nbsp;</span><span class="Apple-style-span" style="font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; ">iterator?</span></div><div><br></div>The code in question is calc/sc/core/tool/rangelst.cxx:<div><br></div><div><div>void ScRangeList::Join( const ScRange&amp; r, bool bIsInList )</div><div>{</div><div>&nbsp;&nbsp; &nbsp;if ( empty() )</div><div>&nbsp;&nbsp; &nbsp;{</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Append( r );</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;return ;</div><div>&nbsp;&nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp;SCCOL nCol1 = r.aStart.Col();</div><div>&nbsp;&nbsp; &nbsp;SCROW nRow1 = r.aStart.Row();</div><div>&nbsp;&nbsp; &nbsp;SCTAB nTab1 = r.aStart.Tab();</div><div>&nbsp;&nbsp; &nbsp;SCCOL nCol2 = r.aEnd.Col();</div><div>&nbsp;&nbsp; &nbsp;SCROW nRow2 = r.aEnd.Row();</div><div>&nbsp;&nbsp; &nbsp;SCTAB nTab2 = r.aEnd.Tab();</div><div>&nbsp;&nbsp; &nbsp;ScRangePtr pOver = (ScRangePtr) &amp;r;<span class="Apple-tab-span" style="white-space:pre">                </span>// fies aber wahr wenn bInList</div><div>&nbsp;&nbsp; &nbsp;size_t nOldPos = 0;</div><div>&nbsp;&nbsp; &nbsp;if ( bIsInList )</div><div>&nbsp;&nbsp; &nbsp;{<span class="Apple-tab-span" style="white-space:pre">        </span>// merken um ggbf. zu loeschen bzw. wiederherzustellen</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;nOldPos = GetPos( pOver );</div><div>&nbsp;&nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp;bool bJoinedInput = false;</div><div><br></div><div>&nbsp;&nbsp; &nbsp;size_t nRanges = size();</div><div>&nbsp;&nbsp; &nbsp;for ( size_t i = 0; i &lt; nRanges; ++i )</div><div>&nbsp;&nbsp; &nbsp;{</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;ScRangePtr p = at( i );</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;if ( p == pOver )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;continue;<span class="Apple-tab-span" style="white-space:pre">                        </span>// derselbe, weiter mit dem naechsten</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;bool bJoined = false;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;if ( p-&gt;In( r ) )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{<span class="Apple-tab-span" style="white-space:pre">        </span>// Range r in Range p enthalten oder identisch</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if ( bIsInList )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bJoined = true;<span class="Apple-tab-span" style="white-space:pre">                </span>// weg mit Range r</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<span class="Apple-tab-span" style="white-space:pre">        </span>// das war's dann</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bJoinedInput = true;<span class="Apple-tab-span" style="white-space:pre">        </span>// nicht anhaengen</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;break;<span class="Apple-tab-span" style="white-space:pre">        </span>// for</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;else if ( r.In( *p ) )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{<span class="Apple-tab-span" style="white-space:pre">        </span>// Range p in Range r enthalten, r zum neuen Range machen</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;*p = r;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bJoined = true;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;if ( !bJoined &amp;&amp; p-&gt;aStart.Tab() == nTab1 &amp;&amp; p-&gt;aEnd.Tab() == nTab2 )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{<span class="Apple-tab-span" style="white-space:pre">        </span>// 2D</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if ( p-&gt;aStart.Col() == nCol1 &amp;&amp; p-&gt;aEnd.Col() == nCol2 )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if ( p-&gt;aStart.Row() == nRow2+1 )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<span class="Apple-tab-span" style="white-space:pre">        </span>// oben</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;p-&gt;aStart.SetRow( nRow1 );</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bJoined = true;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else if ( p-&gt;aEnd.Row() == nRow1-1 )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<span class="Apple-tab-span" style="white-space:pre">        </span>// unten</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;p-&gt;aEnd.SetRow( nRow2 );</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bJoined = true;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else if ( p-&gt;aStart.Row() == nRow1 &amp;&amp; p-&gt;aEnd.Row() == nRow2 )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if ( p-&gt;aStart.Col() == nCol2+1 )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<span class="Apple-tab-span" style="white-space:pre">        </span>// links</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;p-&gt;aStart.SetCol( nCol1 );</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bJoined = true;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else if ( p-&gt;aEnd.Col() == nCol1-1 )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<span class="Apple-tab-span" style="white-space:pre">        </span>// rechts</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;p-&gt;aEnd.SetCol( nCol2 );</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bJoined = true;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;if ( bJoined )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;{</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if ( bIsInList )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<span class="Apple-tab-span" style="white-space:pre">        </span>// innerhalb der Liste Range loeschen</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Remove( nOldPos );</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;delete pOver;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;pOver = NULL;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if ( nOldPos )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nOldPos--;<span class="Apple-tab-span" style="white-space:pre">                        </span>// Seek richtig aufsetzen</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bJoinedInput = true;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Join( *p, true );<span class="Apple-tab-span" style="white-space:pre">                        </span>// rekursiv!</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp;}</div><div>&nbsp;&nbsp; &nbsp;if ( bIsInList )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Seek( nOldPos );</div><div>&nbsp;&nbsp; &nbsp;else if ( !bJoinedInput )</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Append( r );</div><div>}</div></div><div><br></div><div>Joe P</div><div><br></div><div>PS: We have a 2nd Join for the PairLIst that looks the same.</div></body></html>