]> git.lyx.org Git - lyx.git/commitdiff
cosmetics
authorAlfredo Braunstein <abraunst@lyx.org>
Fri, 31 Aug 2007 20:24:15 +0000 (20:24 +0000)
committerAlfredo Braunstein <abraunst@lyx.org>
Fri, 31 Aug 2007 20:24:15 +0000 (20:24 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19959 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetCollapsable.cpp

index 4ae1d7a1585eba0547154d758d7d0765132e2e7a..85b7e105104c3474030aef6c72a2542e9d98927e 100644 (file)
@@ -175,7 +175,7 @@ bool InsetCollapsable::metrics(MetricsInfo & mi, Dimension & dim) const
        using std::max;
 
        autoOpen_ = mi.base.bv->cursor().isInside(this);
-       mi.base.textwidth -= (int) (1.5 * TEXT_TO_INSET_OFFSET);
+       mi.base.textwidth -= int(1.5 * TEXT_TO_INSET_OFFSET);
 
        switch (geometry()) {
        case NoButton:
@@ -234,8 +234,8 @@ bool InsetCollapsable::metrics(MetricsInfo & mi, Dimension & dim) const
        }
        dim.asc += TEXT_TO_INSET_OFFSET;
        dim.des += TEXT_TO_INSET_OFFSET;
-       dim.wid += (int) (1.5 * TEXT_TO_INSET_OFFSET);
-       mi.base.textwidth += (int) (1.5 * TEXT_TO_INSET_OFFSET);
+       dim.wid += int(1.5 * TEXT_TO_INSET_OFFSET);
+       mi.base.textwidth += int(1.5 * TEXT_TO_INSET_OFFSET);
        bool const changed = dim_ != dim;
        dim_ = dim;
        return changed;