X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FInsetList.h;h=708eab86fa0377ca7bd56e6bfc10ebfb820594c3;hb=eeaea7cbbb98141c98c189751907a8fc0b10f7d4;hp=392573b54f2bf8e04f58edd590c1cfa7cbf9052d;hpb=f5251b6bdea0741ef7022bb9195ece39a28462fe;p=lyx.git diff --git a/src/InsetList.h b/src/InsetList.h index 392573b54f..708eab86fa 100644 --- a/src/InsetList.h +++ b/src/InsetList.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS. */ @@ -36,19 +36,21 @@ public: InsetList(InsetList const &, pos_type beg, pos_type end); /// void setBuffer(Buffer &); + /// + void resetBuffer(); /// - class InsetTable { + class Element { public: /// - InsetTable(pos_type p, Inset * i) : pos(p), inset(i) {} + Element(pos_type p, Inset * i) : pos(p), inset(i) {} /// pos_type pos; /// Inset * inset; }; /// - typedef std::vector List; + typedef std::vector List; /// typedef List::iterator iterator; /// @@ -91,7 +93,7 @@ public: pos_type startpos = 0 ///< start position for the search. ) const; - /// count occurences of of an \c Inset type. + /// count occurrences of an \c Inset type. /// \return the number of found inset(s). int count( InsetCode code, ///< Code of inset type to count.