Ignore:
Timestamp:
2004-10-08T09:46:12+13:00 (20 years ago)
Author:
mdewsnip
Message:

Replaced all Gatherer.print* with DebugStream.print*.

File:
1 edited

Legend:

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

    r7314 r8236  
    1 /*
    2  * ModalDialog
    3  *
    4  * GLI 2.3c
    5  *
    6  * 30May2003
    7  *
    8  *#########################################################################
     1/*#########################################################################
    92 *
    103 * A component of the Gatherer application, part of the Greenstone digital
     
    3528import java.awt.*;
    3629import javax.swing.*;
     30import org.greenstone.gatherer.DebugStream;
    3731import org.greenstone.gatherer.Gatherer;
    3832/** An extension of the JDialog that overrides the JVM's typical modal behaviour. This typical behaviour is that when a modal dialog is opened, all other windows cease to respond to user events until the modal dialog is disposed. However this prevents us opening the help documents property whenever a modal dialog is open. Thus we override the modal behaviour so that only the owner frame or dialog is blocked.
     
    165159            }
    166160            catch(Exception exception) {
    167             Gatherer.printStackTrace(exception);
     161            DebugStream.printStackTrace(exception);
    168162            }
    169163        }
     
    175169        }
    176170        catch(Exception exception) {
    177         Gatherer.printStackTrace(exception);
     171        DebugStream.printStackTrace(exception);
    178172        }
    179173    }
Note: See TracChangeset for help on using the changeset viewer.