Changeset 11063


Ignore:
Timestamp:
2006-01-19T11:32:37+13:00 (18 years ago)
Author:
mdewsnip
Message:

Catch an exception to at least allow the GLI to start up with Java 1.4.2 + GTK.

File:
1 edited

Legend:

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

    r8813 r11063  
    9898    // Create components.
    9999    combobox = new GComboBox(true);
    100     combobox.add(new Entry());
     100    try {
     101        combobox.add(new Entry());
     102    }
     103    catch (Exception error) {
     104        error.printStackTrace();
     105    }
    101106    for(int i = 0; i < DEFAULTS.length; i++) {
    102107        try {
Note: See TracChangeset for help on using the changeset viewer.