]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_pos.h
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_pos.h
index 85198c782f1ddf43a32deb2e3b5ee5f69a1f97ec..4c79faa3cc2af8fac5808fab77ab8eda65ade688 100644 (file)
@@ -7,12 +7,12 @@
 
 
 /// Description of a position
-class MathCursorPos {
+class CursorPos {
 public:
        ///
-       MathCursorPos();
+       CursorPos();
        ///
-       explicit MathCursorPos(MathInset *);
+       explicit CursorPos(MathInset *);
 
        /// returns cell corresponding to this position
        MathArray & cell() const;
@@ -25,7 +25,7 @@ public:
 
 public:
        /// pointer to an inset
-       MathInset * par_;
+       MathInset * inset_;
        /// cell index of a position in this inset
        MathArray::idx_type idx_;
        /// position in this cell
@@ -33,12 +33,12 @@ public:
 };
 
 /// test for equality
-bool operator==(MathCursorPos const &, MathCursorPos const &);
+bool operator==(CursorPos const &, CursorPos const &);
 /// test for inequality
-bool operator!=(MathCursorPos const &, MathCursorPos const &);
+bool operator!=(CursorPos const &, CursorPos const &);
 /// test for order
-bool operator<(MathCursorPos const &, MathCursorPos const &);
+bool operator<(CursorPos const &, CursorPos const &);
 /// output
-std::ostream & operator<<(std::ostream &, MathCursorPos const &);
+std::ostream & operator<<(std::ostream &, CursorPos const &);
 
 #endif