Changeset 22533 in osm


Ignore:
Timestamp:
2010-08-02T09:59:57+02:00 (14 years ago)
Author:
bastik
Message:

'update to josm latest'

Location:
applications/editors/josm/plugins/reverter
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/reverter/build.xml

    r21807 r22533  
    3131
    3232        <!-- enter the SVN commit message -->
    33         <property name="commit.message" value="Added image icon" />
     33        <property name="commit.message" value="update to josm latest" />
    3434        <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    35         <property name="plugin.main.version" value="3336" />
     35        <property name="plugin.main.version" value="3403" />
    3636
    3737
  • applications/editors/josm/plugins/reverter/src/reverter/ChangesetIdQuery.java

    r21700 r22533  
    44
    55import java.awt.GridBagLayout;
     6import java.awt.Insets;
    67import java.text.NumberFormat;
    78import java.text.ParseException;
     
    4445    public ChangesetIdQuery() {
    4546        super(Main.parent, tr("Revert changeset"), new String[] {tr("Revert"),tr("Cancel")}, true);
    46         contentConstraints = GBC.eol().fill().insets(10,10,10,5);
     47        contentInsets = new Insets(10,10,10,5);
    4748        setButtonIcons(new String[] {"ok.png", "cancel.png" });
    4849        JPanel panel = new JPanel(new GridBagLayout());
  • applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryDialog.java

    r21201 r22533  
    44
    55import java.awt.GridBagLayout;
     6import java.awt.Insets;
    67
    78import javax.swing.JPanel;
     
    910import org.openstreetmap.josm.Main;
    1011import org.openstreetmap.josm.gui.ExtendedDialog;
    11 import org.openstreetmap.josm.tools.GBC;
    1212
    1313@SuppressWarnings("serial")
     
    1515    public ObjectsHistoryDialog() {
    1616        super(Main.parent, tr("Objects history"), new String[] {"Revert","Cancel"}, false);
    17         contentConstraints = GBC.eol().fill().insets(10,10,10,5);
     17        contentInsets = new Insets(10,10,10,5);
    1818        setButtonIcons(new String[] {"ok.png", "cancel.png" });
    1919        setContent(new JPanel(new GridBagLayout()));
Note: See TracChangeset for help on using the changeset viewer.