]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.h
The graphics part of J�rgen S's latest patch + a few tweaks of my own.
[lyx.git] / src / lyxrow.h
index b6e036bbf9deb10901c2c457c89995b793f3b6f3..ac71a2d6615b6b56c1781d4bed02085b52d45103 100644 (file)
@@ -23,8 +23,6 @@ class Paragraph;
 ///
 class Row {
 public:
-       /// A position in the row
-       typedef lyx::pos_type pos_type;
        ///
        Row();
        ///
@@ -34,9 +32,9 @@ public:
        ///
        Paragraph * par() const;
        ///
-       void pos(pos_type p);
+       void pos(lyx::pos_type p);
        ///
-       pos_type pos() const;
+       lyx::pos_type pos() const;
        ///
        void fill(int f);
        ///
@@ -69,7 +67,7 @@ private:
        ///
        Paragraph * par_;
        ///
-       pos_type pos_;
+       lyx::pos_type pos_;
        /** what is missing to a full row can be negative.
          Needed for hfills, flushright, block etc. */
        mutable int fill_;