]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.h
fix lookup problem for \vert.
[lyx.git] / src / lyxrow.h
index b6e036bbf9deb10901c2c457c89995b793f3b6f3..f427b7a8a44aa189fcad9768637d73c3d18cfefe 100644 (file)
@@ -1,9 +1,9 @@
 // -*- C++ -*-
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
@@ -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_;