X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxrow.C;h=3dbe39095f9f23fee7db15faa03773d663c1e7fe;hb=a9c2dd92df8c538e6ab39bbd136c2da9a0315eb1;hp=748dddda1a6f50c468a1c51986689e63001eaca7;hpb=83acbbd5237373926c629855379e1df9a04209b2;p=lyx.git diff --git a/src/lyxrow.C b/src/lyxrow.C index 748dddda1a..3dbe39095f 100644 --- a/src/lyxrow.C +++ b/src/lyxrow.C @@ -1,8 +1,8 @@ /* This file is part of - * ====================================================== - * + * ====================================================== + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich * Copyright 1995-2001 The LyX Team. * @@ -23,19 +23,19 @@ Row::Row() {} -void Row::par(LyXParagraph * p) +void Row::par(Paragraph * p) { par_ = p; } -void Row::pos(LyXParagraph::size_type p) +void Row::pos(lyx::pos_type p) { pos_ = p; } -LyXParagraph::size_type Row::pos() const +lyx::pos_type Row::pos() const { return pos_; }