* gnu/awt/xlib/XCanvasPeer.java (setVisible): Implement unmap.

From-SVN: r81859
This commit is contained in:
Scott Gilbertson 2004-05-14 21:36:47 +00:00 committed by Scott Gilbertson
parent b89e96acc4
commit 1cd29ad235
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2004-05-14 Scott Gilbertson <scottg@mantatest.com>
* gnu/awt/xlib/XCanvasPeer.java (setVisible): Implement unmap.
2004-05-14 Steven Augart <augart@watson.ibm.com>
* include/jni.h (_Jv_func): Removed.

View file

@ -424,7 +424,8 @@ public class XCanvasPeer implements CanvasPeer
}
else
{
throw new UnsupportedOperationException("unmap not implemented");
window.unmap();
ensureFlush();
}
}