X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxrow.C;h=8cb91b846556635bc60b671a8f9e2c1d391ddde4;hb=ab254289c832cd045c56e6012d14b048618cb833;hp=539253a3a6a40a7db2abd5a7ed9690f2bfbabe1c;hpb=4b2a999762c83627476428e595d3c1e3704a3da0;p=lyx.git diff --git a/src/lyxrow.C b/src/lyxrow.C index 539253a3a6..8cb91b8465 100644 --- a/src/lyxrow.C +++ b/src/lyxrow.C @@ -4,7 +4,7 @@ * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * ====================================================== */ @@ -23,31 +23,19 @@ Row::Row() {} -void Row::par(LyXParagraph * p) +void Row::par(Paragraph * p) { par_ = p; } -LyXParagraph * Row::par() -{ - return par_; -} - - -LyXParagraph * Row::par() const -{ - return par_; -} - - -void Row::pos(LyXParagraph::size_type p) +void Row::pos(Paragraph::size_type p) { pos_ = p; } -LyXParagraph::size_type Row::pos() const +Paragraph::size_type Row::pos() const { return pos_; } @@ -71,12 +59,6 @@ void Row::height(unsigned short h) } -unsigned short Row::height() const -{ - return height_; -} - - void Row::width(unsigned int w) { width_ = w; @@ -119,12 +101,6 @@ void Row::next(Row * r) } -Row * Row::next() const -{ - return next_; -} - - void Row::previous(Row * r) { previous_ = r;