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/cdm/FormatManager.java

    r8002 r8231  
    3737import javax.swing.*;
    3838import javax.swing.event.*;
     39import org.greenstone.gatherer.Configuration;
    3940import org.greenstone.gatherer.Dictionary;
    4041import org.greenstone.gatherer.Gatherer;
     
    274275
    275276        instructions_textarea = new JTextArea();
    276         instructions_textarea.setBackground(Gatherer.config.getColor("coloring.collection_tree_background", false));
     277        instructions_textarea.setBackground(Configuration.getColor("coloring.collection_tree_background", false));
    277278        instructions_textarea.setEditable(false);
    278279        instructions_textarea.setLineWrap(true);
     
    323324       
    324325        editor_textarea = new JTextArea();
    325         editor_textarea.setBackground(Gatherer.config.getColor("coloring.editable_background", false));
     326        editor_textarea.setBackground(Configuration.getColor("coloring.editable_background", false));
    326327        editor_textarea.setCaretPosition(0);
    327328        editor_textarea.setLineWrap(true);
Note: See TracChangeset for help on using the changeset viewer.