Changeset 12620 in josm for trunk/src/org/openstreetmap/josm/gui/HelpAwareOptionPane.java
- Timestamp:
- 2017-08-22T22:26:32+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/HelpAwareOptionPane.java
r12391 r12620 24 24 import javax.swing.event.ChangeListener; 25 25 26 import org.openstreetmap.josm.Main;27 26 import org.openstreetmap.josm.gui.help.HelpBrowser; 28 27 import org.openstreetmap.josm.gui.help.HelpUtil; … … 31 30 import org.openstreetmap.josm.tools.ImageProvider; 32 31 import org.openstreetmap.josm.tools.InputMapUtils; 32 import org.openstreetmap.josm.tools.Logging; 33 33 import org.openstreetmap.josm.tools.WindowGeometry; 34 34 … … 253 253 switch (messageType) { 254 254 case JOptionPane.ERROR_MESSAGE: 255 Main.error(title + " - " + msg);255 Logging.error(title + " - " + msg); 256 256 break; 257 257 case JOptionPane.WARNING_MESSAGE: 258 Main.warn(title + " - " + msg);258 Logging.warn(title + " - " + msg); 259 259 break; 260 260 default: 261 Main.info(title + " - " + msg);261 Logging.info(title + " - " + msg); 262 262 } 263 263
Note:
See TracChangeset
for help on using the changeset viewer.
