From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13803 invoked by alias); 7 Dec 2005 20:17:48 -0000 Received: (qmail 13556 invoked by uid 22791); 7 Dec 2005 20:17:47 -0000 X-Spam-Check-By: sourceware.org Received: from outmail128162.authsmtp.com (HELO squirrel.dmpriest.net.uk) (62.13.128.162) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 07 Dec 2005 20:17:40 +0000 Received: from [192.168.1.100] (cpc4-hem14-6-0-cust223.lutn.cable.ntl.com [82.5.14.223]) (authenticated bits=0) by squirrel.dmpriest.net.uk (8.13.3/8.13.3/Kp) with ESMTP id jB7KHIrU009555; Wed, 7 Dec 2005 20:17:18 GMT (envelope-from david.gilbert@object-refinery.com) Message-ID: <439744CD.3070508@object-refinery.com> Date: Wed, 07 Dec 2005 20:17:00 -0000 From: David Gilbert User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051026) MIME-Version: 1.0 To: tromey@redhat.com CC: dgilbert@sourceware.org, Mauve News Group Subject: Re: mauve ./ChangeLog gnu/testlet/javax/swing/plaf ... References: <20051206140424.7036.qmail@sourceware.org> In-Reply-To: Content-Type: multipart/mixed; boundary="------------080508040003050608080308" X-Server-Quench: 7772e189-675e-11da-a87f-001185d377ca X-Authentic-SMTP: 61633132333134.squirrel.dmpriest.net.uk:1.43/Kp X-Powered-By: AuthSMTP - http://www.authsmtp.com - Authenticated SMTP Mail Relay X-Report-SPAM: If SPAM / abuse - report it at: http://www.authsmtp.com/abuse X-Virus-Status: No virus detected - but ensure you scan with your own anti-virus system! X-IsSubscribed: yes Mailing-List: contact mauve-discuss-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-discuss-owner@sourceware.org X-SW-Source: 2005-q4/txt/msg00049.txt.bz2 This is a multi-part message in MIME format. --------------080508040003050608080308 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 440 Tom Tromey wrote: >I think this patch broke compilation > >dgilbert> createFilterComboBoxModel.java > >This file has: > >import gnu.testlet.javax.swing.JFileChooser.MyFileChooser; > >But I don't see that file in CVS. > >Tom > > Sorry. Fixed with this patch committed: 2005-12-07 David Gilbert * gnu/testlet/javax/swing/JFileChooser/MyFileChooser.java: New support class. Regards, Dave --------------080508040003050608080308 Content-Type: text/plain; name="diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diff.txt" Content-length: 1521 Index: gnu/testlet/javax/swing/JFileChooser/MyFileChooser.java =================================================================== RCS file: gnu/testlet/javax/swing/JFileChooser/MyFileChooser.java diff -N gnu/testlet/javax/swing/JFileChooser/MyFileChooser.java --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ gnu/testlet/javax/swing/JFileChooser/MyFileChooser.java 7 Dec 2005 20:14:03 -0000 @@ -0,0 +1,36 @@ +// Tags: not-a-test + +// Copyright (C) 2005 David Gilbert + +// Mauve is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2, or (at your option) +// any later version. + +// Mauve is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Mauve; see the file COPYING. If not, write to +// the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +// Boston, MA 02110-1301 USA. + + +package gnu.testlet.javax.swing.JFileChooser; + +import javax.swing.JFileChooser; +import javax.swing.plaf.FileChooserUI; + +public class MyFileChooser extends JFileChooser +{ + public MyFileChooser() + { + } + + public void setUI(FileChooserUI ui) + { + super.setUI(ui); + } +} --------------080508040003050608080308--