mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
parlist-17-b.diff
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7005 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
62be565337
commit
b12c42a381
@ -1,3 +1,6 @@
|
||||
2003-05-22 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||
|
||||
* ParagraphList.C (erase): new function, taking two iterators
|
||||
|
||||
2003-05-22 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
|
@ -257,7 +257,7 @@ void ParagraphList::clear()
|
||||
}
|
||||
|
||||
|
||||
void ParagraphList::erase(ParagraphList::iterator it)
|
||||
ParagraphList::iterator ParagraphList::erase(ParagraphList::iterator it)
|
||||
{
|
||||
#ifndef NO_NEXT
|
||||
Paragraph * prev = it->previous_;
|
||||
@ -274,6 +274,7 @@ void ParagraphList::erase(ParagraphList::iterator it)
|
||||
it->previous_ = 0;
|
||||
it->next_ = 0;
|
||||
delete &*it;
|
||||
return next;
|
||||
#else
|
||||
Paragraph * prev = it->prev_par_;
|
||||
Paragraph * next = it->next_par_;
|
||||
@ -287,10 +288,21 @@ void ParagraphList::erase(ParagraphList::iterator it)
|
||||
next->prev_par_ = prev;
|
||||
|
||||
delete &*it;
|
||||
return next;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
ParagraphList::iterator ParagraphList::erase(ParagraphList::iterator first,
|
||||
ParagraphList::iterator last)
|
||||
{
|
||||
while (first != last) {
|
||||
erase(first++);
|
||||
}
|
||||
return last;
|
||||
}
|
||||
|
||||
|
||||
ParagraphList::iterator ParagraphList::begin()
|
||||
{
|
||||
return iterator(parlist);
|
||||
|
@ -61,7 +61,9 @@ public:
|
||||
///
|
||||
void clear();
|
||||
///
|
||||
void erase(iterator it);
|
||||
iterator erase(iterator it);
|
||||
///
|
||||
iterator erase(iterator first, iterator last);
|
||||
///
|
||||
iterator begin();
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user