gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] libvob/org/nongnu/libvob GraphicsAPI.java


From: Benja Fallenstein
Subject: [Gzz-commits] libvob/org/nongnu/libvob GraphicsAPI.java
Date: Sun, 30 Mar 2003 11:19:57 -0500

CVSROOT:        /cvsroot/libvob
Module name:    libvob
Changes by:     Benja Fallenstein <address@hidden>      03/03/30 11:19:57

Modified files:
        org/nongnu/libvob: GraphicsAPI.java 

Log message:
        hack to work around a kaffe bug (currently being fixed)

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/org/nongnu/libvob/GraphicsAPI.java.diff?tr1=1.3&tr2=1.4&r1=text&r2=text

Patches:
Index: libvob/org/nongnu/libvob/GraphicsAPI.java
diff -u libvob/org/nongnu/libvob/GraphicsAPI.java:1.3 
libvob/org/nongnu/libvob/GraphicsAPI.java:1.4
--- libvob/org/nongnu/libvob/GraphicsAPI.java:1.3       Tue Mar 25 13:23:46 2003
+++ libvob/org/nongnu/libvob/GraphicsAPI.java   Sun Mar 30 11:19:57 2003
@@ -161,6 +161,17 @@
        public VobScene createVobScene() {
            return createVobScene(getSize());
        }
+
+       
+       // The following are here for the benefit of Kaffe, which gets
+       // confused if a method is called from this class, but
+       // not implemented in the abstract class.
+       public Dimension getSize() {
+           throw new UnsupportedOperationException("not implemented");
+       }
+       public VobScene createVobScene(Dimension size) {
+           throw new UnsupportedOperationException("not implemented");
+       }
     }
 
     static public abstract class AbstractWindow extends 
AbstractRenderingSurface implements Window {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]