2004/01/17 07:30:31
[org.ibex.core.git] / src / org / xwt / Surface.java
index 5e517c8..79a6194 100644 (file)
@@ -79,7 +79,7 @@ public abstract class Surface extends PixelBuffer implements Scheduler.Task {
     public abstract void setTitleBarText(String s);    ///< Sets the surface's title bar text, if applicable
     public abstract void setIcon(Picture i);           ///< Sets the surface's title bar text, if applicable
     public abstract void _dispose();                   ///< Destroy the surface
-    public void setLimits(int min_width, int min_height, int max_width, int max_height) { /* FIXME */ }
+    public void setMinimumSize(int minx, int miny, boolean resizable) { }
 
     protected void setSize(int w, int h) {
         if (w == actualWidth && h == actualHeight) return;