Ignore:
Timestamp:
2012-02-15T19:01:41+01:00 (14 years ago)
Author:
akks
Message:

'Utilsplugin2: fixing shortcut deprecation'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/customurl/ChooseURLAction.java

    r27426 r27761  
    2929    public ChooseURLAction() {
    3030         super(tr("Select custom URL"), "selecturl", tr("Select custom URL"),null,true,true);
    31          putValue("toolbar", "action/selectURL");
    3231    }
    3332
     
    6261        }
    6362        final JLabel label1=new JLabel(tr("Please select one of custom URLs (configured in Preferences)"));
    64         final JList list1=new JList(names);
     63        final JList<String> list1=new JList<String>(names);
    6564        final JTextField editField=new JTextField();
    6665        final JCheckBox check1=new JCheckBox(tr("Ask every time"));
Note: See TracChangeset for help on using the changeset viewer.