From 0d3a63065070da129d3f930a126dfbf75f1d947e Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Sat, 1 Sep 2007 14:00:03 +0000 Subject: [PATCH] correct dimension types. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19974 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/ParagraphMetrics.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ParagraphMetrics.h b/src/ParagraphMetrics.h index 42f6d87204..5cf587f788 100644 --- a/src/ParagraphMetrics.h +++ b/src/ParagraphMetrics.h @@ -57,13 +57,13 @@ public: Dimension const & dim() const { return dim_; } Dimension & dim() { return dim_; } /// 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 - unsigned int width() const { return dim_.width(); } + int width() const { return dim_.width(); } /// ascend of paragraph above baseline - unsigned int ascent() const { return dim_.ascent(); } + int ascent() const { return dim_.ascent(); } /// 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 RowList & rows() { return rows_; } /// The painter and others use this -- 2.39.2