]> git.lyx.org Git - lyx.git/blobdiff - src/CursorSlice.cpp
Avoid full metrics computation with Update:FitCursor
[lyx.git] / src / CursorSlice.cpp
index 872a91110e7996ffa1eb194add86d38e347c6cf2..105df9685b5f68267bb239b14c6214da4339496a 100644 (file)
@@ -76,14 +76,14 @@ pit_type CursorSlice::lastpit() const
 }
 
 
-CursorSlice::row_type CursorSlice::row() const
+row_type CursorSlice::row() const
 {
        LASSERT(inset_, return 0);
        return inset_->row(idx_);
 }
 
 
-CursorSlice::col_type CursorSlice::col() const
+col_type CursorSlice::col() const
 {
        LASSERT(inset_, return 0);
        return inset_->col(idx_);