From: pjrm Date: Sun, 16 Sep 2007 14:47:28 +0000 (+0000) Subject: noop: Remove a couple of redundant casts. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4490ce7b8592cc018dda9c574ee2239b503792bb;p=inkscape.git noop: Remove a couple of redundant casts. --- diff --git a/src/extension/internal/pdfinput/pdf-parser.cpp b/src/extension/internal/pdfinput/pdf-parser.cpp index b0fbfd7b5..5bf7e0fe7 100644 --- a/src/extension/internal/pdfinput/pdf-parser.cpp +++ b/src/extension/internal/pdfinput/pdf-parser.cpp @@ -611,7 +611,7 @@ void PdfParser::opConcat(Object args[], int numArgs) { } else if (!strcmp(prevOp, "cm") || !strcmp(prevOp, "startPage")) { // multiply it with the previous transform double otherMatrix[6]; - if (!builder->getTransform((double*)&otherMatrix)) { // invalid transform + if (!builder->getTransform(otherMatrix)) { // invalid transform // construct identity matrix otherMatrix[0] = otherMatrix[3] = 1.0; otherMatrix[1] = otherMatrix[2] = otherMatrix[4] = otherMatrix[5] = 0.0; @@ -1573,7 +1573,7 @@ void PdfParser::opShFill(Object args[], int numArgs) { } if (seenConcat && seenClip) { - if (builder->getTransform((double*)&gradientTransform)) { + if (builder->getTransform(gradientTransform)) { matrix = (double*)&gradientTransform; builder->setTransform(1.0, 0.0, 0.0, 1.0, 0.0, 0.0); // remove transform }