Ignore:
Timestamp:
2004-10-07T16:44:32+13:00 (20 years ago)
Author:
mdewsnip
Message:

Replaced all "Gatherer.config" with "Configuration".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/MenuBar.java

    r8039 r8231  
    4141import javax.swing.*;
    4242import javax.swing.event.*;
     43import org.greenstone.gatherer.Configuration;
    4344import org.greenstone.gatherer.Dictionary;
    4445import org.greenstone.gatherer.Gatherer;
     
    255256    help.add(help_general);
    256257    help.add(new JSeparator());
    257     if (Gatherer.config.get("workflow.browse", true)) {
     258    if (Configuration.get("workflow.browse", true)) {
    258259        help.add(help_browse);
    259260    }
    260     if (Gatherer.config.get("workflow.mirror", true)) {
     261    if (Configuration.get("workflow.mirror", true)) {
    261262        help.add(help_mirror);
    262263    }
    263     if (Gatherer.config.get("workflow.gather", true)) {
     264    if (Configuration.get("workflow.gather", true)) {
    264265        help.add(help_collect);
    265266    }
    266     if (Gatherer.config.get("workflow.enrich", true)) {
     267    if (Configuration.get("workflow.enrich", true)) {
    267268        help.add(help_metaedit);
    268269    }
    269     if (Gatherer.config.get("workflow.design", true)) {
     270    if (Configuration.get("workflow.design", true)) {
    270271        help.add(help_design);
    271272    }
    272     if (Gatherer.config.get("workflow.export", true)) {
     273    if (Configuration.get("workflow.export", true)) {
    273274        help.add(help_export);
    274275    }
    275     if (Gatherer.config.get("workflow.create", true)) {
     276    if (Configuration.get("workflow.create", true)) {
    276277        help.add(help_build);
    277278    }
    278     if (Gatherer.config.get("workflow.preview", true)) {
     279    if (Configuration.get("workflow.preview", true)) {
    279280        help.add(help_preview);
    280281    }
Note: See TracChangeset for help on using the changeset viewer.