changeset in /hg/icedtea6: Act on window close events (Bug# 215)

Deepak Bhole dbhole at redhat.com
Tue Oct 28 14:28:59 PDT 2008


changeset 27198ae52677 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=27198ae52677
description:
	Act on window close events (Bug# 215)

diffstat:

2 files changed, 9 insertions(+)
ChangeLog                                                |    5 +++++
rt/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java |    4 ++++

diffs (26 lines):

diff -r 6816e84bfc28 -r 27198ae52677 ChangeLog
--- a/ChangeLog	Mon Oct 27 21:17:19 2008 +0000
+++ b/ChangeLog	Tue Oct 28 17:27:18 2008 -0400
@@ -1,3 +1,8 @@ 2008-10-27  Andrew John Hughes  <ahughes
+2008-10-27  Deepak Bhole  <dbhole at redhat.com>
+
+	* rt/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java: Act on window
+	close events (Bug# 215)
+
 2008-10-27  Andrew John Hughes  <ahughes at redhat.com>
 
 	PR icedtea/234:
diff -r 6816e84bfc28 -r 27198ae52677 rt/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java
--- a/rt/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java	Mon Oct 27 21:17:19 2008 +0000
+++ b/rt/net/sourceforge/jnlp/runtime/JNLPSecurityManager.java	Tue Oct 28 17:27:18 2008 -0400
@@ -121,6 +121,10 @@ class JNLPSecurityManager extends Securi
 
         public void windowDeactivated(WindowEvent e) {
             activeApplication = null;
+        }
+        
+        public void windowClosing(WindowEvent e) {
+        	e.getWindow().dispose();
         }
     };
 



More information about the distro-pkg-dev mailing list