From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10983 invoked by alias); 28 Oct 2005 18:09:36 -0000 Mailing-List: contact mauve-discuss-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-discuss-owner@sources.redhat.com Received: (qmail 10966 invoked by uid 22791); 28 Oct 2005 18:09:32 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Fri, 28 Oct 2005 18:09:32 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j9SI9UKI031963 for ; Fri, 28 Oct 2005 14:09:30 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j9SI9TV06297 for ; Fri, 28 Oct 2005 14:09:29 -0400 Received: from tony.toronto.redhat.com (tony.toronto.redhat.com [172.16.14.158]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id j9SI9TSh013635 for ; Fri, 28 Oct 2005 14:09:29 -0400 Subject: FYI: change to Component.requestFocus test From: Anthony Balkissoon To: mauve-discuss@sources.redhat.com Content-Type: multipart/mixed; boundary="=-cPolSZ1Jkn3ke1jkqnRk" Date: Fri, 28 Oct 2005 18:09:00 -0000 Message-Id: <1130522969.2838.219.camel@tony.toronto.redhat.com> Mime-Version: 1.0 X-SW-Source: 2005-q4/txt/msg00020.txt.bz2 --=-cPolSZ1Jkn3ke1jkqnRk Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 339 The Tag should have been 1.2 instead of 1.1, but I changed the JFrame to a Frame (because JFrame is more than what was needed) and made the Tag JDK 1.0 2005-10-28 Anthony Balkissoon * gnu/testlet/java/awt/Component/requestFocus.java: Changed from JFrame to Frame, changed Tags from JDK 1.2 to JDK 1.0. --Tony --=-cPolSZ1Jkn3ke1jkqnRk Content-Disposition: attachment; filename=requestFocusFix.diff Content-Type: text/x-patch; name=requestFocusFix.diff; charset=us-ascii Content-Transfer-Encoding: 7bit Content-length: 1452 Index: batch_run =================================================================== RCS file: /cvs/mauve/mauve/batch_run,v retrieving revision 1.17 diff -u -r1.17 batch_run --- batch_run 31 Jul 2005 17:42:52 -0000 1.17 +++ batch_run 28 Oct 2005 18:05:50 -0000 @@ -38,7 +38,7 @@ if test "x$COMPILER" = "x"; then #COMPILER="gcj -C -Wno-deprecated" -COMPILER="jikes -nowarn -bootclasspath /usr/local/classpath/share/classpath/glibj.zip" +COMPILER="jikes -nowarn -bootclasspath /home/abalkiss/sources/classpath/install/share/classpath" fi if test "x$COMPILER" = "xgcj"; then Index: gnu/testlet/java/awt/Component/requestFocus.java =================================================================== RCS file: /cvs/mauve/mauve/gnu/testlet/java/awt/Component/requestFocus.java,v retrieving revision 1.1 diff -u -r1.1 requestFocus.java --- gnu/testlet/java/awt/Component/requestFocus.java 28 Oct 2005 16:04:10 -0000 1.1 +++ gnu/testlet/java/awt/Component/requestFocus.java 28 Oct 2005 18:05:50 -0000 @@ -1,4 +1,4 @@ -// Tags: GUI JDK1.1 +// Tags: GUI JDK1.0 // Copyright (C) 2005 Red Hat @@ -22,7 +22,7 @@ import gnu.testlet.TestHarness; import gnu.testlet.Testlet; -import javax.swing.JFrame; +import java.awt.Frame; public class requestFocus implements Testlet { @@ -33,7 +33,7 @@ */ public void test(TestHarness harness) { - JFrame jf = new JFrame(); + Frame jf = new Frame(); jf.show(); try { --=-cPolSZ1Jkn3ke1jkqnRk--