]> git.lyx.org Git - features.git/commitdiff
correct dimension types.
authorAbdelrazak Younes <younes@lyx.org>
Sat, 1 Sep 2007 14:00:03 +0000 (14:00 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Sat, 1 Sep 2007 14:00:03 +0000 (14:00 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19974 a592a061-630c-0410-9148-cb99ea01b6c8

src/ParagraphMetrics.h

index 42f6d8720472fb629b4ba0705080fa7696e7a4ee..5cf587f788820ee430d7cf87dece138fc3a34818 100644 (file)
@@ -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