X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxrow.C;h=3dbe39095f9f23fee7db15faa03773d663c1e7fe;hb=29f01faa17495e3d80c08f234c8f049c7d699ac1;hp=4a90389d9b4c66d517a85ab9811eb8712671409c;hpb=ff367a38b1815c6ee5d85f9ab1b1dee80b3a3fd2;p=lyx.git diff --git a/src/lyxrow.C b/src/lyxrow.C index 4a90389d9b..3dbe39095f 100644 --- a/src/lyxrow.C +++ b/src/lyxrow.C @@ -1,10 +1,10 @@ /* This file is part of - * ====================================================== - * + * ====================================================== + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * 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_; }