summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-01-23 10:33:35 +0000
committerOliver Bolte <obo@openoffice.org>2007-01-23 10:33:35 +0000
commitac083003ba4da78b58d0bfcffbaf134623dfcbdc (patch)
treebafce067d478bd511355b41ed58840a11f3bc312 /svx
parent1e4cfed9c3be405d133457ba684fae24c6968665 (diff)
INTEGRATION: CWS mfdouble (1.4.138); FILE MERGED
2006/12/14 19:15:48 pl 1.4.138.1: #i71046# increase precision of MetricField and friends
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/cuigrfflt.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/dialog/cuigrfflt.hxx b/svx/source/dialog/cuigrfflt.hxx
index e0bb9dd3d2d7..d0576d663aed 100644
--- a/svx/source/dialog/cuigrfflt.hxx
+++ b/svx/source/dialog/cuigrfflt.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: cuigrfflt.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 12:09:51 $
+ * last change: $Author: obo $ $Date: 2007-01-23 11:33:35 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -169,8 +169,8 @@ public:
~GraphicFilterMosaic();
virtual Graphic GetFilteredGraphic( const Graphic& rGraphic, double fScaleX, double fScaleY );
- long GetTileWidth() const { return maMtrWidth.GetValue(); }
- long GetTileHeight() const { return maMtrHeight.GetValue(); }
+ long GetTileWidth() const { return static_cast<long>(maMtrWidth.GetValue()); }
+ long GetTileHeight() const { return static_cast<long>(maMtrHeight.GetValue()); }
BOOL IsEnhanceEdges() const { return maCbxEdges.IsChecked(); }
};