/hg/icedtea6: Set handle when creating panel, and remove the red...

asu at icedtea.classpath.org asu at icedtea.classpath.org
Fri Oct 1 08:40:26 PDT 2010


changeset 94f30c67c2f9 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=94f30c67c2f9
author: Andrew Su <asu at redhat.com>
date: Fri Oct 01 11:39:33 2010 -0400

	Set handle when creating panel, and remove the redundant reframe
	called afterwards.


diffstat:

2 files changed, 9 insertions(+), 6 deletions(-)
ChangeLog                                                |    7 +++++++
plugin/icedteanp/java/sun/applet/PluginAppletViewer.java |    8 ++------

diffs (39 lines):

diff -r 14ed93e7ecc5 -r 94f30c67c2f9 ChangeLog
--- a/ChangeLog	Thu Sep 30 11:10:01 2010 +0100
+++ b/ChangeLog	Fri Oct 01 11:39:33 2010 -0400
@@ -1,3 +1,10 @@ 2010-09-29  Andrew John Hughes  <ahughes
+2010-10-01  Andrew Su  <asu at redhat.com>
+
+	* PluginAppletViewer.java:
+	(createPanel): Changed call to reframe with handle 0 to the handle
+	passed in.
+	(handleMessage): Removed the redundant reframe from initialization.
+
 2010-09-29  Andrew John Hughes  <ahughes at redhat.com>
 
 	* Makefile.am:
diff -r 14ed93e7ecc5 -r 94f30c67c2f9 plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
--- a/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Thu Sep 30 11:10:01 2010 +0100
+++ b/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Fri Oct 01 11:39:33 2010 -0400
@@ -139,8 +139,8 @@ import com.sun.jndi.toolkit.url.UrlUtil;
 
          
 
-         // put inside initial 0 handle frame
-         PluginAppletViewer.reFrame(null, identifier, System.out, 0, panel);
+         // create the frame.
+         PluginAppletViewer.reFrame(null, identifier, System.out, handle, panel);
          
          panel.init();
 
@@ -557,10 +557,6 @@ import com.sun.jndi.toolkit.url.UrlUtil;
 
                  if (!status.get(identifier).equals(PAV_INIT_STATUS.INIT_COMPLETE))
                      throw new Exception("Applet initialization timeout");
-
-                 PluginAppletViewer oldFrame = applets.get(identifier);
-                 reFrame(oldFrame, oldFrame.identifier, oldFrame.statusMsgStream, 
-                         handle, oldFrame.panel);
                  
              } else {
                  PluginDebug.debug ("Handling message: " + message + " instance " + identifier + " " + Thread.currentThread());



More information about the distro-pkg-dev mailing list