mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
fix typo
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4978 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ea5ebc3626
commit
a443001d5a
@ -16,6 +16,7 @@
|
|||||||
(getParFromID): ditto
|
(getParFromID): ditto
|
||||||
(paragraph): use for_each + boost::bind
|
(paragraph): use for_each + boost::bind
|
||||||
(getInsetFromID): use paragraphlist iterators
|
(getInsetFromID): use paragraphlist iterators
|
||||||
|
(getLabelList): typo fix
|
||||||
|
|
||||||
2002-08-14 Lars Gullik Bjønnes <larsbj@gullik.net>
|
2002-08-14 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||||
|
|
||||||
|
@ -1959,7 +1959,7 @@ vector<string> const InsetText::getLabelList() const
|
|||||||
vector<string> label_list;
|
vector<string> label_list;
|
||||||
|
|
||||||
ParagraphList::iterator pit = paragraphs.begin();
|
ParagraphList::iterator pit = paragraphs.begin();
|
||||||
ParagraphList::iterator pend = paragraphs.begin();
|
ParagraphList::iterator pend = paragraphs.end();
|
||||||
for (; pit != pend; ++pit) {
|
for (; pit != pend; ++pit) {
|
||||||
InsetList::iterator beg = pit->insetlist.begin();
|
InsetList::iterator beg = pit->insetlist.begin();
|
||||||
InsetList::iterator end = pit->insetlist.end();
|
InsetList::iterator end = pit->insetlist.end();
|
||||||
|
Loading…
Reference in New Issue
Block a user