]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.h
the spellcheck cleanup
[lyx.git] / src / lyxrow.h
index 2b21b3265c6f3e7c6b2bbbc606a12ea22f9f942e..56f3430e2650db865636b106fa32b91bb1ad6852 100644 (file)
@@ -29,9 +29,9 @@ public:
        ///
        lyx::pos_type pos() const;
        ///
-       void end(lyx::pos_type p);
+       void endpos(lyx::pos_type p);
        ///
-       lyx::pos_type end() const;
+       lyx::pos_type endpos() const;
        ///
        void fill(int f);
        ///
@@ -59,9 +59,9 @@ public:
        /// return true if this row is the start of a paragraph
        bool isParStart() const;
        /// return the cached y position
-       unsigned int y() const { return y_; }
+       unsigned int y_offset() const { return y_offset_; }
        /// cache the y position
-       void y(unsigned int newy) { y_ = newy; }
+       void y_offset(unsigned int newy) { y_offset_ = newy; }
        ///
        float x() const;
        ///
@@ -93,7 +93,7 @@ private:
        ///
        unsigned int width_;
        /// cached y position
-       unsigned int y_;
+       unsigned int y_offset_;
        /// ascent from baseline including prelude space
        unsigned short ascent_of_text_;
        /// the top of the real text in the row