]> git.lyx.org Git - lyx.git/blobdiff - src/TextMetrics.h
* src/LaTeXFeatures.cpp: simplify greektext definition. Patch by G. Milde (bug #6458)
[lyx.git] / src / TextMetrics.h
index 9dd68558e910b719919933c6943f4535088cafc5..dfd7d13bd1c03564792f9bafaf7e8047eee79b16 100644 (file)
@@ -46,9 +46,6 @@ public:
        ///
        std::pair<pit_type, ParagraphMetrics const *> last() const;
 
-       ///
-       int parPosition(pit_type pit) const;
-
        ///
        Dimension const & dimension() const { return dim_; }
        ///
@@ -144,10 +141,10 @@ private:
 
        /// sets row.end to the pos value *after* which a row should break.
        /// for example, the pos after which isNewLine(pos) == true
-       pit_type rowBreakPoint(
+       pos_type rowBreakPoint(
                int width,
                pit_type const pit,
-               pit_type first
+               pos_type first
                ) const;
 
        /// returns the minimum space a row needs on the screen in pixel
@@ -179,7 +176,7 @@ public:
        /// returns the row near the specified y-coordinate in a given paragraph
        /// (relative to the screen). If assert_in_view is true, it is made sure
        /// that the row is on screen completely; this might change the given pit.
-       Row const & getPitAndRowNearY(int y, pit_type & pit,
+       Row const & getPitAndRowNearY(int y, pit_type & pit,
                bool assert_in_view, bool up);
 
        /// returns the paragraph number closest to screen y-coordinate.