mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
fd0fb15d42
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8539 a592a061-630c-0410-9148-cb99ea01b6c8
13 lines
185 B
C
13 lines
185 B
C
|
|
#include "insetiterator.h"
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
|
InsetIterator::InsetIterator(InsetBase & inset)
|
|
: DocumentIterator(inset)
|
|
{
|
|
if (size() && !nextInset())
|
|
forwardInset();
|
|
}
|