Ignore:
Timestamp:
2009-01-12T14:21:28+13:00 (15 years ago)
Author:
kjdon
Message:

set the ComponentOrientation for a few things, for RTL gli

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gli/trunk/src/org/greenstone/gatherer/util/CheckListEntry.java

    r12047 r18372  
    22
    33import javax.swing.JCheckBox;
     4import org.greenstone.gatherer.Dictionary;
    45
    56/** A CheckListEntry encapsulates a single row of the list, both its check box and the object the row represents. */
     
    1819    super(object.toString());
    1920    this.object = object;
     21    this.setComponentOrientation(Dictionary.getOrientation());
    2022    }
    2123
     
    2325    public CheckListEntry(String text, boolean is_selected) {
    2426    super(text);
     27    this.setComponentOrientation(Dictionary.getOrientation());
    2528    setSelected(is_selected);
    2629    }
Note: See TracChangeset for help on using the changeset viewer.