]> git.lyx.org Git - lyx.git/blobdiff - src/InsetList.h
ctests: categorize #12708 test file as resolved
[lyx.git] / src / InsetList.h
index f704a394f8c1b2070227fef014ad07320b3d8513..708eab86fa0377ca7bd56e6bfc10ebfb820594c3 100644 (file)
@@ -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<InsetTable> List;
+       typedef std::vector<Element> 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.