X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FInsetList.h;h=13beeb0b9cc6218c94561d90257c7a980149ffc9;hb=8524ee93c35ed3ca15a0aaafa7b893f2f7d21f47;hp=3e287ad1c73c496a4461a9526b176cd3df817fd2;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/InsetList.h b/src/InsetList.h index 3e287ad1c7..13beeb0b9c 100644 --- a/src/InsetList.h +++ b/src/InsetList.h @@ -19,7 +19,7 @@ namespace lyx { -class InsetBase; +class Inset; class Buffer; @@ -30,11 +30,11 @@ public: class InsetTable { public: /// - InsetTable(pos_type p, InsetBase * i) : pos(p), inset(i) {} + InsetTable(pos_type p, Inset * i) : pos(p), inset(i) {} /// pos_type pos; /// - InsetBase * inset; + Inset * inset; }; /// typedef std::vector List; @@ -60,13 +60,13 @@ public: /// const_iterator insetIterator(pos_type pos) const; /// - void insert(InsetBase * inset, pos_type pos); + void insert(Inset * inset, pos_type pos); /// void erase(pos_type pos); /// - InsetBase * release(pos_type); + Inset * release(pos_type); /// - InsetBase * get(pos_type pos) const; + Inset * get(pos_type pos) const; /// void increasePosAfterPos(pos_type pos); ///