Changeset 11282


Ignore:
Timestamp:
2006-02-17T15:27:02+13:00 (18 years ago)
Author:
kjdon
Message:

when setting up the fields of an exsiting argument, we need to copy the hiddenGLI setting from the base argument

Location:
trunk/gli/src/org/greenstone/gatherer/cdm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/Classifier.java

    r8243 r11282  
    104104            existing_argument.setRequired(base_argument.isRequired());
    105105            existing_argument.setType(base_argument.getType());
     106            existing_argument.setHiddenGLI(base_argument.isHiddenGLI());
    106107        }
    107108        // No existing argument. Copy base_argument and add it, but do not set its assigned flag. That should be set the first time its changed by the user.
  • trunk/gli/src/org/greenstone/gatherer/cdm/Plugin.java

    r9645 r11282  
    9898            existing_argument.setMaximum(base_argument.getMaximum());
    9999            existing_argument.setOwner(base_argument.getOwner());
     100            existing_argument.setHiddenGLI(base_argument.isHiddenGLI());
    100101            add(existing_argument);
    101102           
Note: See TracChangeset for help on using the changeset viewer.