Ignore:
Timestamp:
2011-06-26T13:43:35+02:00 (13 years ago)
Author:
stoecker
Message:

remove unused icons, make connection timouts configurable and increase them a bit to handle JOSM server delays

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/Severity.java

    r4162 r4172  
    1212public enum Severity {
    1313    /** Error messages */
    14     ERROR(tr("Errors"), "error",       Main.pref.getColor(marktr("validation error"), Color.RED)),
     14    ERROR(tr("Errors"), /* ICON(data/) */"error",       Main.pref.getColor(marktr("validation error"), Color.RED)),
    1515    /** Warning messages */
    16     WARNING(tr("Warnings"), "warning", Main.pref.getColor(marktr("validation warning"), Color.YELLOW)),
     16    WARNING(tr("Warnings"), /* ICON(data/) */"warning", Main.pref.getColor(marktr("validation warning"), Color.YELLOW)),
    1717    /** Other messages */
    18     OTHER(tr("Other"), "other",        Main.pref.getColor(marktr("validation other"), Color.CYAN));
     18    OTHER(tr("Other"), /* ICON(data/) */"other",        Main.pref.getColor(marktr("validation other"), Color.CYAN));
    1919
    2020    /** Description of the severity code */
Note: See TracChangeset for help on using the changeset viewer.