X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxcursor.h;h=0fdf06a2961d30637f34f768f4fea6e619932d55;hb=d1182f17daa1a164d9527ccbe6500840d7ac6bc8;hp=bb5e1f6ae8a13004daaee4f7c3eeb259d9d5f1f0;hpb=83acbbd5237373926c629855379e1df9a04209b2;p=lyx.git diff --git a/src/lyxcursor.h b/src/lyxcursor.h index bb5e1f6ae8..0fdf06a296 100644 --- a/src/lyxcursor.h +++ b/src/lyxcursor.h @@ -16,7 +16,7 @@ #pragma interface #endif -#include "lyxparagraph.h" +#include "paragraph.h" struct Row; @@ -26,15 +26,15 @@ class LyXCursor { public: LyXCursor(); /// - void par(LyXParagraph * p); + void par(Paragraph * p); /// - LyXParagraph * par(); + Paragraph * par(); /// - LyXParagraph * par() const; + Paragraph * par() const; /// - void pos(LyXParagraph::size_type p); + void pos(Paragraph::size_type p); /// - LyXParagraph::size_type pos() const; + Paragraph::size_type pos() const; /// void boundary(bool b); /// @@ -59,9 +59,9 @@ public: Row * row() const; private: /// The paragraph the cursor is in. - LyXParagraph * par_; + Paragraph * par_; /// The position inside the paragraph - LyXParagraph::size_type pos_; + Paragraph::size_type pos_; /// bool boundary_; ///