summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2013-03-28 13:43:53 +0100
committerPetr Mladek <pmladek@suse.cz>2013-03-28 18:08:54 +0100
commit2511a06b5eaf831193936177a708b283849fdbcf (patch)
tree4d5848b9d8b60b8422473f9fb8a16ba2a74badd6
parentaef51dc739737440c07c11c8cd88015335c5bb8c (diff)
Re-introduce accidentally removed basegfx::fround().
Change-Id: I0ea05229009a1473767d1614623af2b5a6536c5a Signed-off-by: Petr Mladek <pmladek@suse.cz>
-rw-r--r--drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
index 83d52c01dd18..ada69e6e29ed 100644
--- a/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx
@@ -1242,7 +1242,7 @@ namespace drawinglayer
aHairLinePolyPolygon.transform(maCurrentTransformation);
// use the transformed line width
- LineInfo aLineInfo(LINE_SOLID, getTransformedLineWidth(rLine.getWidth()));
+ LineInfo aLineInfo(LINE_SOLID, basegfx::fround(getTransformedLineWidth(rLine.getWidth())));
aLineInfo.SetLineJoin(rLine.getLineJoin());
aLineInfo.SetLineCap(rLine.getLineCap());