]> git.lyx.org Git - lyx.git/blobdiff - src/dociterator.C
- Link against qt-mt333.lib which is what the current qt3 cvs produces
[lyx.git] / src / dociterator.C
index 8f97436531265301fec1027abc86bcc05c1df413..2e89e4503a84905c2e1b257a6a16f06cbe7b51b5 100644 (file)
@@ -146,13 +146,13 @@ Paragraph const & DocIterator::paragraph() const
 
 Row & DocIterator::textRow()
 {
-       return *paragraph().getRow(pos());
+       return paragraph().getRow(pos());
 }
 
 
 Row const & DocIterator::textRow() const
 {
-       return *paragraph().getRow(pos());
+       return paragraph().getRow(pos());
 }
 
 
@@ -168,18 +168,6 @@ DocIterator::pos_type DocIterator::lastpos() const
 }
 
 
-DocIterator::row_type DocIterator::crow() const
-{
-       return paragraph().row(pos());
-}
-
-
-DocIterator::row_type DocIterator::lastcrow() const
-{
-       return paragraph().rows.size();
-}
-
-
 DocIterator::idx_type DocIterator::lastidx() const
 {
        return top().lastidx();
@@ -314,7 +302,7 @@ void DocIterator::forwardPos()
                top.pos() = 0;
                return;
        }
-       //lyxerr << "... no next par" << endl;
+       //lyxerr << "... no next pit" << endl;
 
        // otherwise try to move on one cell if possible
        if (top.idx() < lastidx()) {