Code

noop: Remove a couple of redundant casts.
authorpjrm <pjrm@users.sourceforge.net>
Sun, 16 Sep 2007 14:47:28 +0000 (14:47 +0000)
committerpjrm <pjrm@users.sourceforge.net>
Sun, 16 Sep 2007 14:47:28 +0000 (14:47 +0000)
src/extension/internal/pdfinput/pdf-parser.cpp

index b0fbfd7b584f71cc15779ed02427b99050558b11..5bf7e0fe700333923e17e913eb1d97a3b1cddb7f 100644 (file)
@@ -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
         }