You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by je...@apache.org on 2010/06/13 17:53:56 UTC

svn commit: r954250 - in /xmlgraphics/commons/trunk: src/java/org/apache/xmlgraphics/ps/PSState.java status.xml

Author: jeremias
Date: Sun Jun 13 15:53:56 2010
New Revision: 954250

URL: http://svn.apache.org/viewvc?rev=954250&view=rev
Log:
Bugzilla #49364:
Two properties didn't get copied in copy constructor of PSState.
Submitted by: Julien Aymé <julien.ayme.at.gmail.com>

Modified:
    xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/ps/PSState.java
    xmlgraphics/commons/trunk/status.xml

Modified: xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/ps/PSState.java
URL: http://svn.apache.org/viewvc/xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/ps/PSState.java?rev=954250&r1=954249&r2=954250&view=diff
==============================================================================
--- xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/ps/PSState.java (original)
+++ xmlgraphics/commons/trunk/src/java/org/apache/xmlgraphics/ps/PSState.java Sun Jun 13 15:53:56 2010
@@ -69,6 +69,8 @@ public class PSState implements Serializ
             this.transformConcatList.addAll(org.transformConcatList);
         }
         this.linecap = org.linecap;
+        this.linejoin = org.linejoin;
+        this.miterLimit = org.miterLimit;
         this.linewidth = org.linewidth;
         this.dashpattern = org.dashpattern;
         this.color = org.color;

Modified: xmlgraphics/commons/trunk/status.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/commons/trunk/status.xml?rev=954250&r1=954249&r2=954250&view=diff
==============================================================================
--- xmlgraphics/commons/trunk/status.xml (original)
+++ xmlgraphics/commons/trunk/status.xml Sun Jun 13 15:53:56 2010
@@ -40,11 +40,14 @@
   </contexts>
   <changes>
     <release version="Trunk" date="n/a">
+      <action context="Code" dev="JM" type="fix" fixes-bug="49364" due-to="Julien Aymé">
+        Two properties didn't get copied in copy constructor of PSState.
+      </action>
       <action context="Code" dev="JM" type="update" fixes-bug="49339" due-to="Julien Aymé">
         Optimization for PostScript state handling in (E)PSDocumentGraphics2D.
       </action>
       <action context="Code" dev="JM" type="update" fixes-bug="49338" due-to="Julien Aymé">
-        Using shorthand procedures for rectangles instead of the generic shape processor.
+        PS output: Using shorthand procedures for rectangles instead of the generic shape processor.
       </action>
       <action context="Code" dev="JM" type="update" fixes-bug="49337" due-to="Julien Aymé">
         Moved method disableClipping from AbstractPSDocumentGraphics2D to PSGraphics2D.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: commits-help@xmlgraphics.apache.org