Ignore:
Timestamp:
2009-09-03T15:13:20+02:00 (15 years ago)
Author:
Gubaer
Message:

applied #3377: patch by xeen: Less warnings for JOSM

Location:
trunk/src/org/openstreetmap/josm/actions
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/MergeNodesAction.java

    r2025 r2039  
    155155        for (HashSet<Node> nodelinks : backlinks.values()) {
    156156            if (!nodelinks.containsAll(allNodes)) {
    157                 int option = new ExtendedDialog(Main.parent,
     157                ExtendedDialog ed = new ExtendedDialog(Main.parent,
    158158                        tr("Merge nodes with different memberships?"),
    159                         tr("The selected nodes have differing relation memberships.  "
    160                                 + "Do you still want to merge them?"),
    161                                 new String[] {tr("Merge Anyway"), tr("Cancel")},
    162                                 new String[] {"mergenodes.png", "cancel.png"}).getValue();
    163                 if (option == 1) {
     159                        new String[] {tr("Merge Anyway"), tr("Cancel")});
     160                ed.setButtonIcons(new String[] {"mergenodes.png", "cancel.png"});
     161                ed.setContent(tr("The selected nodes have differing relation memberships.  "
     162                        + "Do you still want to merge them?"));
     163                ed.showDialog();
     164
     165                if (ed.getValue() == 1) {
    164166                    break;
    165167                }
  • trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java

    r1674 r2039  
    7373                while ((line = input.readLine()) != null) {
    7474                    // Skip potential private information
    75                     if (line.trim().toLowerCase().startsWith("osm-server.username"))
     75                    if (line.trim().toLowerCase().startsWith("osm-server.username")) {
    7676                        continue;
    77                     if (line.trim().toLowerCase().startsWith("osm-server.password"))
     77                    }
     78                    if (line.trim().toLowerCase().startsWith("osm-server.password")) {
    7879                        continue;
    79                     if (line.trim().toLowerCase().startsWith("marker.show"))
     80                    }
     81                    if (line.trim().toLowerCase().startsWith("marker.show")) {
    8082                        continue;
     83                    }
    8184
    8285                    text.append(line);
     
    97100        sp.setPreferredSize(new Dimension(600, 500));
    98101
    99         int result = new ExtendedDialog(Main.parent, tr(tr("Status Report")), sp,
    100                 new String[] {tr("Copy to clipboard and close"), tr("Close") },
    101                 new String[] {"copy.png", "cancel.png" }).getValue();
     102        ExtendedDialog ed = new ExtendedDialog(Main.parent,
     103                tr("Status Report"),
     104                new String[] {tr("Copy to clipboard and close"), tr("Close") });
     105        ed.setButtonIcons(new String[] {"copy.png", "cancel.png" });
     106        ed.setContent(sp);
     107        ed.showDialog();
    102108
    103         if(result != 1) return;
     109        if(ed.getValue() != 1) return;
    104110        try {
    105111            Toolkit.getDefaultToolkit().getSystemClipboard().setContents(
     
    107113                        public void lostOwnership(Clipboard clipboard, Transferable contents) {}
    108114                    }
    109              );
     115            );
    110116        }
    111117        catch (RuntimeException x) {}
Note: See TracChangeset for help on using the changeset viewer.