]> git.lyx.org Git - features.git/commitdiff
mathed60.diff one hunk of prev apllied code rejected
authorLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 15 Mar 2001 16:08:26 +0000 (16:08 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 15 Mar 2001 16:08:26 +0000 (16:08 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1775 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/math_rowst.C
src/mathed/math_rowst.h

index 66fd6876d446834997d2559b4346c01845754033..7128048cb5c16fdc66241b19898741a51b783c80 100644 (file)
@@ -85,6 +85,13 @@ MathedRowContainer::iterator MathedRowContainer::begin()
        return iterator(this);
 }
 
+MathedRowContainer::iterator MathedRowContainer::end()
+{
+       iterator it(this);
+       it.pos_ = data_.size();
+       return it;
+}
+
 bool MathedRowContainer::empty() const
 {
        return data_.size() == 0;
index 2832203c6f120f6f15262cc20d6d7b2c1ad577c0..f934bdaf2ed57eebd893953289105b7d86b4f802 100644 (file)
@@ -96,6 +96,8 @@ public:
 public:
        /// 
        iterator begin();
+       /// 
+       iterator end();
        ///
        bool empty() const;