Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 2312 invoked from network); 16 Jan 2005 20:39:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 16 Jan 2005 20:39:13 -0000 Received: (qmail 69077 invoked by uid 500); 16 Jan 2005 20:39:13 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 68578 invoked by uid 500); 16 Jan 2005 20:39:11 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 68565 invoked by uid 500); 16 Jan 2005 20:39:11 -0000 Received: (qmail 68561 invoked by uid 99); 16 Jan 2005 20:39:11 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sun, 16 Jan 2005 12:39:11 -0800 Received: (qmail 2300 invoked by uid 1340); 16 Jan 2005 20:39:10 -0000 Date: 16 Jan 2005 20:39:10 -0000 Message-ID: <20050116203910.2299.qmail@minotaur.apache.org> From: dirkv@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/launcher/src/java/org/apache/commons/launcher ChildMain.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N dirkv 2005/01/16 12:39:10 Modified: launcher/src/java/org/apache/commons/launcher ChildMain.java Log: Use the minimizedwindowicon attribute of the launcher task but the icon does not show up. issue report + fix by Frederic Borry Revision Changes Path 1.6 +1 -1 jakarta-commons/launcher/src/java/org/apache/commons/launcher/ChildMain.java Index: ChildMain.java =================================================================== RCS file: /home/cvs/jakarta-commons/launcher/src/java/org/apache/commons/launcher/ChildMain.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- ChildMain.java 16 Jan 2005 20:16:06 -0000 1.5 +++ ChildMain.java 16 Jan 2005 20:39:10 -0000 1.6 @@ -201,7 +201,7 @@ if (title != null) frame.setTitle(title); frame.setState(Frame.ICONIFIED); - String icon = System.getProperty(ChildMain.MINIMIZED_WINDOW_TITLE_PROP_NAME); + String icon = System.getProperty(ChildMain.MINIMIZED_WINDOW_ICON_PROP_NAME); if (icon != null) { Image iconImage = Toolkit.getDefaultToolkit().createImage(icon); if (iconImage != null) --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org