Ignore:
Timestamp:
17.06.2009 10:04:22 (3 years ago)
Author:
stoecker
Message:

remove all these ugly tab stops introduced in the last half year

File:
1 edited

Legend:

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

    r1530 r1677  
    145145        for (HashSet<Node> nodelinks : backlinks.values()) { 
    146146            if (!nodelinks.containsAll(allNodes)) { 
    147                 int option = new ExtendedDialog(Main.parent,  
    148                         tr("Merge nodes with different memberships?"),  
     147                int option = new ExtendedDialog(Main.parent, 
     148                        tr("Merge nodes with different memberships?"), 
    149149                        tr("The selected nodes have differing relation memberships.  " 
    150150                            + "Do you still want to merge them?"), 
    151                         new String[] {tr("Merge Anyway"), tr("Cancel")},  
    152                         new String[] {"mergenodes.png", "cancel.png"}).getValue();   
     151                        new String[] {tr("Merge Anyway"), tr("Cancel")}, 
     152                        new String[] {"mergenodes.png", "cancel.png"}).getValue(); 
    153153                if (option == 1) break; 
    154154                return null; 
     
    186186 
    187187        if (!components.isEmpty()) { 
    188             int answer = new ExtendedDialog(Main.parent,  
    189                 tr("Enter values for all conflicts."),  
     188            int answer = new ExtendedDialog(Main.parent, 
     189                tr("Enter values for all conflicts."), 
    190190                p, 
    191                 new String[] {tr("Solve Conflicts"), tr("Cancel")},  
    192                 new String[] {"dialogs/conflict.png", "cancel.png"}).getValue();   
     191                new String[] {tr("Solve Conflicts"), tr("Cancel")}, 
     192                new String[] {"dialogs/conflict.png", "cancel.png"}).getValue(); 
    193193            if (answer != 1) 
    194194                return null; 
Note: See TracChangeset for help on using the changeset viewer.