summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sdext/source/pdfimport/misc/pdfihelper.cxx2
-rw-r--r--sdext/source/pdfimport/tree/drawtreevisiting.cxx11
2 files changed, 6 insertions, 7 deletions
diff --git a/sdext/source/pdfimport/misc/pdfihelper.cxx b/sdext/source/pdfimport/misc/pdfihelper.cxx
index c1f7c41fa112..65b4a859042c 100644
--- a/sdext/source/pdfimport/misc/pdfihelper.cxx
+++ b/sdext/source/pdfimport/misc/pdfihelper.cxx
@@ -54,7 +54,7 @@ void pdfi::FillDashStyleProps(PropertyMap& props, const std::vector<double>& das
for (size_t i = 0; i < pairCount; i++)
{
- if (dotLengths[dotStage] != dashArray[i * 2])
+ if (!rtl::math::approxEqual(dotLengths[dotStage], dashArray[i * 2]))
{
dotStage++;
if (dotStage == 3)
diff --git a/sdext/source/pdfimport/tree/drawtreevisiting.cxx b/sdext/source/pdfimport/tree/drawtreevisiting.cxx
index a38050ad30b1..46ed9b460a98 100644
--- a/sdext/source/pdfimport/tree/drawtreevisiting.cxx
+++ b/sdext/source/pdfimport/tree/drawtreevisiting.cxx
@@ -663,12 +663,11 @@ bool isSpaces(TextElement* pTextElem)
bool notTransformed(const GraphicsContext& GC)
{
- return (
- GC.Transformation.get(0,0) == 100.00 &&
- GC.Transformation.get(1,0) == 0.00 &&
- GC.Transformation.get(0,1) == 0.00 &&
- GC.Transformation.get(1,1) == -100.00
- );
+ return
+ rtl::math::approxEqual(GC.Transformation.get(0,0), 100.00) &&
+ GC.Transformation.get(1,0) == 0.00 &&
+ GC.Transformation.get(0,1) == 0.00 &&
+ rtl::math::approxEqual(GC.Transformation.get(1,1), -100.00);
}
void DrawXmlOptimizer::optimizeTextElements(Element& rParent)