Ignore:
Timestamp:
2008-12-23T15:07:05+01:00 (16 years ago)
Author:
stoecker
Message:

removed usage of tab stops

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Shortcut.java

    r1157 r1169  
    139139     */
    140140    public KeyStroke getKeyStroke() {
    141         if (assignedModifier != -1) 
    142             return KeyStroke.getKeyStroke(assignedKey, assignedModifier);               
     141        if (assignedModifier != -1)
     142            return KeyStroke.getKeyStroke(assignedKey, assignedModifier);
    143143        return null;
    144144    }
     
    351351            System.err.println("CONFLICT WITH SYSTEM KEY "+shortText);
    352352            return null;
    353         } 
     353        }
    354354        potentialShortcut = new Shortcut(shortText, longText, key, GROUP_RESERVED, key, modifier, true, false);
    355355        shortcuts.put(shortText, potentialShortcut);
     
    441441    // a lengthy warning message
    442442    private static void displayWarning(Shortcut conflictsWith, Shortcut potentialShortcut, String shortText, String longText) {
    443         JOptionPane.showMessageDialog(Main.parent, 
     443        JOptionPane.showMessageDialog(Main.parent,
    444444                tr("Setting the keyboard shortcut ''{0}'' for the action ''{1}'' ({2}) failed\n"+
    445445                        "because the shortcut is already taken by the action ''{3}'' ({4}).\n\n",
Note: See TracChangeset for help on using the changeset viewer.