summaryrefslogtreecommitdiff
path: root/jfreereport/patches/libbase-1.1.6-deprecated.patch
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-06-13 03:40:24 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-06-13 03:40:24 +0200
commit283022f9d90baaf5a570befd2bcefa24ea9d15b4 (patch)
treea609e8b5be34f8317d6f4f691eaee9716f1bb834 /jfreereport/patches/libbase-1.1.6-deprecated.patch
parent58b9ada15fe8916203ac026a5b3d58c3ef676487 (diff)
silence warnings in jfreereport
don't attempt to copy nonexisting file don't use deprecated version of function also get rid of unnecessary path-delimiter escapes in affected makefiles
Diffstat (limited to 'jfreereport/patches/libbase-1.1.6-deprecated.patch')
-rw-r--r--jfreereport/patches/libbase-1.1.6-deprecated.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/jfreereport/patches/libbase-1.1.6-deprecated.patch b/jfreereport/patches/libbase-1.1.6-deprecated.patch
new file mode 100644
index 000000000000..da28c30eb70e
--- /dev/null
+++ b/jfreereport/patches/libbase-1.1.6-deprecated.patch
@@ -0,0 +1,11 @@
+--- misc/libbase-1.1.6/source/org/pentaho/reporting/libraries/base/boot/ModuleInitializeException.java 2010-04-27 15:58:44.000000000 +0200
++++ misc/build/libbase-1.1.6/source/org/pentaho/reporting/libraries/base/boot/ModuleInitializeException.java 2011-06-13 01:28:14.000000000 +0200
+@@ -48,7 +48,7 @@
+ */
+ public ModuleInitializeException(final String s, final Exception e)
+ {
+- super(s, e);
++ super(s, (Throwable) e);
+ }
+
+ /**