]> git.lyx.org Git - lyx.git/blobdiff - src/dociterator.C
The bug-fix in revision 16531 introduced another bug. This is the right fix. I did...
[lyx.git] / src / dociterator.C
index 4d93aa7a0177228266c36fc14b7445103b7ba74f..25ea0b39077c3d47228d79804e0445f250c6b59b 100644 (file)
@@ -15,7 +15,6 @@
 
 #include "debug.h"
 #include "lyxtext.h"
-#include "lyxrow.h"
 #include "paragraph.h"
 
 #include "mathed/MathData.h"
@@ -170,20 +169,6 @@ Paragraph const & DocIterator::paragraph() const
 }
 
 
-Row & DocIterator::textRow()
-{
-       BOOST_ASSERT(!paragraph().rows().empty());
-       return paragraph().getRow(pos(), boundary_);
-}
-
-
-Row const & DocIterator::textRow() const
-{
-       BOOST_ASSERT(!paragraph().rows().empty());
-       return paragraph().getRow(pos(), boundary_);
-}
-
-
 pit_type DocIterator::lastpit() const
 {
        return inMathed() ? 0 : text()->paragraphs().size() - 1;