X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FInsetList.h;h=33a9fe1e7f27e338240ebe1f919447d58fed090a;hb=2bb86211292f416cd584023feb23dc3b86bc1761;hp=9a2ed973c853ce843fa21284064a6cb855a1cab1;hpb=68b7ef25fb7d2da230d3eb11d6737701abfc2e64;p=lyx.git diff --git a/src/InsetList.h b/src/InsetList.h index 9a2ed973c8..33a9fe1e7f 100644 --- a/src/InsetList.h +++ b/src/InsetList.h @@ -24,13 +24,14 @@ class Buffer; class InsetList { public: /// - struct InsetTable { + class InsetTable { + public: + /// + InsetTable(lyx::pos_type p, InsetBase * i) : pos(p), inset(i) {} /// lyx::pos_type pos; /// InsetBase * inset; - /// - InsetTable(lyx::pos_type p, InsetBase * i) : pos(p), inset(i) {} }; /// typedef std::vector List; @@ -42,15 +43,15 @@ public: /// ~InsetList(); /// - iterator begin() { return list.begin(); } + iterator begin() { return list_.begin(); } /// - iterator end() { return list.end(); } + iterator end() { return list_.end(); } /// - const_iterator begin() const { return list.begin(); } + const_iterator begin() const { return list_.begin(); } /// - const_iterator end() const { return list.end(); } + const_iterator end() const { return list_.end(); } /// - bool empty() const { return list.empty(); } + bool empty() const { return list_.empty(); } /// iterator insetIterator(lyx::pos_type pos); /// @@ -70,7 +71,7 @@ public: private: /// - List list; + List list_; }; #endif