Author: hibou
Date: Tue Dec 30 06:57:32 2008
New Revision: 730140

URL: http://svn.apache.org/viewvc?rev=730140&view=rev
Log:
IVYDE-142: fix of the bug (thanks to Daniel Becheanu)

Modified:
    ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt
    
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java

Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt?rev=730140&r1=730139&r2=730140&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt Tue Dec 30 
06:57:32 2008
@@ -8,6 +8,7 @@
 - FIX: NPE when a project:/// path is used and path does not exist (IVYDE-144)
 - FIX: project://[projectname]/ scheme for settings only work with java 
projects, not simple projects (IVYDE-145)
 - FIX: source and javadoc attachment regression (IVYDE-146)
+- FIX: IvyDE does not save "Configurations" and "Types" field values for 
"Retrive" tab  (IVYDE-142) (thanks to Daniel Becheanu)
 
   version 2.0.0 beta1
 ==========================

Modified: 
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java
URL: 
http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java?rev=730140&r1=730139&r2=730140&view=diff
==============================================================================
--- 
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java
 (original)
+++ 
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvydeContainerPage.java
 Tue Dec 30 06:57:32 2008
@@ -150,6 +150,8 @@
             conf.doRetrieve = retrieveComposite.isRetrieveEnabled();
             conf.retrievePattern = retrieveComposite.getRetrievePattern();
             conf.retrieveSync = retrieveComposite.isSyncEnabled();
+            conf.retrieveConfs = retrieveComposite.getRetrieveConfs();
+            conf.retrieveTypes = retrieveComposite.getRetrieveTypes();
         } else {
             conf.isRetrieveProjectSpecific = false;
         }


Reply via email to