Return-Path: Delivered-To: apmail-ant-notifications-archive@locus.apache.org Received: (qmail 22718 invoked from network); 26 Mar 2008 08:20:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Mar 2008 08:20:02 -0000 Received: (qmail 76208 invoked by uid 500); 26 Mar 2008 08:20:01 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 76178 invoked by uid 500); 26 Mar 2008 08:20:01 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 76169 invoked by uid 99); 26 Mar 2008 08:20:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Mar 2008 01:20:00 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Mar 2008 08:19:29 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C046D1A9832; Wed, 26 Mar 2008 01:19:40 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r641196 - in /ant/ivy/ivyde/trunk: CHANGES.txt src/java/org/apache/ivyde/eclipse/ui/editors/IvyEditor.java Date: Wed, 26 Mar 2008 08:19:40 -0000 To: notifications@ant.apache.org From: hibou@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080326081940.C046D1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hibou Date: Wed Mar 26 01:19:39 2008 New Revision: 641196 URL: http://svn.apache.org/viewvc?rev=641196&view=rev Log: IVYDE-81 : An error occur when closing a project while the ivy editor is open - fix the spelling mistake Modified: ant/ivy/ivyde/trunk/CHANGES.txt ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/ui/editors/IvyEditor.java Modified: ant/ivy/ivyde/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/CHANGES.txt?rev=641196&r1=641195&r2=641196&view=diff ============================================================================== --- ant/ivy/ivyde/trunk/CHANGES.txt (original) +++ ant/ivy/ivyde/trunk/CHANGES.txt Wed Mar 26 01:19:39 2008 @@ -18,6 +18,7 @@ - FIX: Automatic javadoc attachment is not working (IVYDE-55) - FIX: On startup IvyIDE can freeze eclipse (IVYDE-63) (thanks to Nicolas Lalevée) - FIX: The project ivy configuration is not taken into account on the first run: the configuration is no longer stored in the preferences but in the .classpath (IVYDE-70) +- FIX: An error occurs when closing a project while the ivy editor is opened (IVYDE-81) - moved to apache, packages renamed to org.apache.ivyde Modified: ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/ui/editors/IvyEditor.java URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/ui/editors/IvyEditor.java?rev=641196&r1=641195&r2=641196&view=diff ============================================================================== --- ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/ui/editors/IvyEditor.java (original) +++ ant/ivy/ivyde/trunk/src/java/org/apache/ivyde/eclipse/ui/editors/IvyEditor.java Wed Mar 26 01:19:39 2008 @@ -195,7 +195,7 @@ public void run() { IWorkbenchPage[] pages = getSite().getWorkbenchWindow().getPages(); for (int i = 0; i < pages.length; i++) { - if (((FileEditorInput) xmlEditor.getEditorInput()).getFile().getProject() + if (((IFileEditorInput) xmlEditor.getEditorInput()).getFile().getProject() .equals(res)) { IEditorPart editorPart = pages[i] .findEditor(xmlEditor.getEditorInput());