]> git.lyx.org Git - lyx.git/blobdiff - src/texrow.h
two patches from john
[lyx.git] / src / texrow.h
index 9111eeb22af647d78fb1061dfdecd1f53185d599..0c3adb33301aed9f223042258bbbec3b53a41e4e 100644 (file)
@@ -5,7 +5,7 @@
  *           LyX, The Document Processor
  *      
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team
+ *           Copyright 1995-2001 The LyX Team
  *
  * ====================================================== */
 
@@ -18,7 +18,7 @@
 
 #include <list>
 
-class LyXParagraph;
+class Paragraph;
 
 // Controls correspondance between paragraphs and the generated LaTeX file
 class TexRow {
@@ -30,7 +30,7 @@ public:
        void reset();
 
        /// Define what paragraph and position the next row will represent
-       void start(LyXParagraph * par, int pos);
+       void start(Paragraph * par, int pos);
 
        /// Insert node when line is completed
        void newline();
@@ -91,7 +91,7 @@ private:
        ///
        mutable RowList rowlist;
        /// Last paragraph
-       LyXParagraph * lastpar;
+       Paragraph * lastpar;
        /// Last position
        int lastpos;