]> git.lyx.org Git - lyx.git/blobdiff - src/InsetList.h
Rearrange GTK icon lookup code, get rid of comboBoxTextSet
[lyx.git] / src / InsetList.h
index 7b6a0f36790d62121b42297ba793238ae0361fc7..33a9fe1e7f27e338240ebe1f919447d58fed090a 100644 (file)
@@ -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<InsetTable> List;