source: josm/trunk/patches/20svgsalamander_getxform.patch@ 4957

Last change on this file since 4957 was 4453, checked in by Upliner, 13 years ago

Add patch to svgsalamander to fix bug in the importvec plugin

File size: 626 bytes
RevLine 
[4453]1Patch against rev 98 of https://svn.java.net/svn/svgsalamander~svn/trunk. Adds getXForm() method needed for the importvec plugin.
2Index: josm/src/com/kitfox/svg/TransformableElement.java
3===================================================================
4--- josm.orig/src/com/kitfox/svg/TransformableElement.java
5+++ josm/src/com/kitfox/svg/TransformableElement.java
6@@ -53,6 +54,11 @@
7 {
8 super(id, parent);
9 }
10+
11+ public AffineTransform getXForm()
12+ {
13+ return xform;
14+ }
15 /*
16 public void loaderStartElement(SVGLoaderHelper helper, Attributes attrs, SVGElement parent)
17 {
Note: See TracBrowser for help on using the repository browser.