]> git.lyx.org Git - lyx.git/blobdiff - src/texrow.h
fix typo that put too many include paths for most people
[lyx.git] / src / texrow.h
index 2afb02fc013553f9238f3c8525eba577074826a6..700bcd67dfff7a8e42265be55db2a5d4b154ce8e 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
  *
@@ -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,9 +91,9 @@ private:
        ///
        mutable RowList rowlist;
        /// Last paragraph
-       LyXParagraph * lastpar;
+       Paragraph * lastpar;
        /// Last position
        int lastpos;
-       
+
 };
 #endif