Changeset 29430 in osm for applications/editors/josm/plugins/imagery_offset_db/src/iodb/SimpleOffsetQueryTask.java
- Timestamp:
- 2013-03-29T20:04:22+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/SimpleOffsetQueryTask.java
r29384 r29430 30 30 */ 31 31 public SimpleOffsetQueryTask( String query, String title ) { 32 super( tr("Uploading"));32 super(ImageryOffsetTools.DIALOG_TITLE); 33 33 this.query = query; 34 34 this.title = title; … … 121 121 protected void finish() { 122 122 if( errorMessage != null ) { 123 JOptionPane.showMessageDialog(Main.parent, errorMessage, tr("Imagery Offset"), JOptionPane.ERROR_MESSAGE); 123 JOptionPane.showMessageDialog(Main.parent, errorMessage, 124 ImageryOffsetTools.DIALOG_TITLE, JOptionPane.ERROR_MESSAGE); 124 125 } else if( listener != null ) { 125 126 listener.queryPassed();
Note:
See TracChangeset
for help on using the changeset viewer.