X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FInsetList.h;h=708eab86fa0377ca7bd56e6bfc10ebfb820594c3;hb=bbe09eada1de6edb7eb45213eaac4b4b09495f6e;hp=f704a394f8c1b2070227fef014ad07320b3d8513;hpb=fd50fb720f45a9064ccd91c1066e80ce6b5aa8a5;p=lyx.git diff --git a/src/InsetList.h b/src/InsetList.h index f704a394f8..708eab86fa 100644 --- a/src/InsetList.h +++ b/src/InsetList.h @@ -40,17 +40,17 @@ public: 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; /// @@ -93,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.