mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
one more Paragraph * -> ParagraphList::iterator
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6922 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
acae34cdc8
commit
507be88a4f
@ -1,7 +1,7 @@
|
||||
|
||||
2003-05-02 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
* buffer.[Ch]: one instance of Paragraph * -> ParagraphList::iterator
|
||||
* buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
|
||||
|
||||
2003-05-02 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||
|
||||
|
@ -2479,9 +2479,9 @@ Buffer::inset_iterator::pointer Buffer::inset_iterator::operator->()
|
||||
}
|
||||
|
||||
|
||||
Paragraph * Buffer::inset_iterator::getPar()
|
||||
ParagraphList::iterator Buffer::inset_iterator::getPar() const
|
||||
{
|
||||
return &(*pit);
|
||||
return pit;
|
||||
}
|
||||
|
||||
|
||||
|
@ -366,7 +366,7 @@ public:
|
||||
pointer operator->();
|
||||
|
||||
///
|
||||
Paragraph * getPar();
|
||||
ParagraphList::iterator getPar() const;
|
||||
///
|
||||
lyx::pos_type getPos() const;
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user