X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxrow.C;h=3dbe39095f9f23fee7db15faa03773d663c1e7fe;hb=98c966c64594611e469313314abd1e59524adb4a;hp=497748628f6538a7cb9a57b2a313bebaab6ad7f3;hpb=30eff7526de39a0964fb54e6421ddc2910f7dcba;p=lyx.git diff --git a/src/lyxrow.C b/src/lyxrow.C index 497748628f..3dbe39095f 100644 --- a/src/lyxrow.C +++ b/src/lyxrow.C @@ -1,49 +1,41 @@ /* 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. * * ====================================================== */ #include +#ifdef __GNUG__ +#pragma implementation +#endif + #include "lyxrow.h" Row::Row() - : par_(0), pos_(0), fill_(0), height_(0), + : par_(0), pos_(0), fill_(0), height_(0), width_(0), ascent_of_text_(0), baseline_(0), next_(0), previous_(0) {} -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(lyx::pos_type p) { pos_ = p; } -LyXParagraph::size_type Row::pos() const +lyx::pos_type Row::pos() const { return pos_; } @@ -67,9 +59,15 @@ void Row::height(unsigned short h) } -unsigned short Row::height() const +void Row::width(unsigned int w) +{ + width_ = w; +} + + +unsigned int Row::width() const { - return height_; + return width_; } @@ -103,12 +101,6 @@ void Row::next(Row * r) } -Row * Row::next() const -{ - return next_; -} - - void Row::previous(Row * r) { previous_ = r;