correct dimension types.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19974 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-09-01 14:00:03 +00:00
parent ed6f900552
commit 0d3a630650

View File

@ -57,13 +57,13 @@ public:
Dimension const & dim() const { return dim_; } Dimension const & dim() const { return dim_; }
Dimension & dim() { return dim_; } Dimension & dim() { return dim_; }
/// total height of paragraph /// total height of paragraph
unsigned int height() const { return dim_.height(); } int height() const { return dim_.height(); }
/// total width of paragraph, may differ from workwidth /// total width of paragraph, may differ from workwidth
unsigned int width() const { return dim_.width(); } int width() const { return dim_.width(); }
/// ascend of paragraph above baseline /// ascend of paragraph above baseline
unsigned int ascent() const { return dim_.ascent(); } int ascent() const { return dim_.ascent(); }
/// descend of paragraph below baseline /// descend of paragraph below baseline
unsigned int descent() const { return dim_.descent(); } int descent() const { return dim_.descent(); }
/// Text updates the rows using this access point /// Text updates the rows using this access point
RowList & rows() { return rows_; } RowList & rows() { return rows_; }
/// The painter and others use this /// The painter and others use this