]> git.lyx.org Git - lyx.git/blobdiff - src/InsetList.h
and this
[lyx.git] / src / InsetList.h
index 7c0e150b226e0e796b1128fe067f619c279bfb6a..7b6a0f36790d62121b42297ba793238ae0361fc7 100644 (file)
@@ -42,17 +42,17 @@ 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); 
+       iterator insetIterator(lyx::pos_type pos);
        ///
        const_iterator insetIterator(lyx::pos_type pos) const;
        ///
@@ -70,7 +70,7 @@ public:
 
 private:
        ///
-       List list;
+       List list_;
 };
 
 #endif