Changeset 22533 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-08-02T09:59:57+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/reverter
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reverter/build.xml
r21807 r22533 31 31 32 32 <!-- enter the SVN commit message --> 33 <property name="commit.message" value=" Added image icon" />33 <property name="commit.message" value="update to josm latest" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value="3 336" />35 <property name="plugin.main.version" value="3403" /> 36 36 37 37 -
applications/editors/josm/plugins/reverter/src/reverter/ChangesetIdQuery.java
r21700 r22533 4 4 5 5 import java.awt.GridBagLayout; 6 import java.awt.Insets; 6 7 import java.text.NumberFormat; 7 8 import java.text.ParseException; … … 44 45 public ChangesetIdQuery() { 45 46 super(Main.parent, tr("Revert changeset"), new String[] {tr("Revert"),tr("Cancel")}, true); 46 content Constraints = GBC.eol().fill().insets(10,10,10,5);47 contentInsets = new Insets(10,10,10,5); 47 48 setButtonIcons(new String[] {"ok.png", "cancel.png" }); 48 49 JPanel panel = new JPanel(new GridBagLayout()); -
applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryDialog.java
r21201 r22533 4 4 5 5 import java.awt.GridBagLayout; 6 import java.awt.Insets; 6 7 7 8 import javax.swing.JPanel; … … 9 10 import org.openstreetmap.josm.Main; 10 11 import org.openstreetmap.josm.gui.ExtendedDialog; 11 import org.openstreetmap.josm.tools.GBC;12 12 13 13 @SuppressWarnings("serial") … … 15 15 public ObjectsHistoryDialog() { 16 16 super(Main.parent, tr("Objects history"), new String[] {"Revert","Cancel"}, false); 17 content Constraints = GBC.eol().fill().insets(10,10,10,5);17 contentInsets = new Insets(10,10,10,5); 18 18 setButtonIcons(new String[] {"ok.png", "cancel.png" }); 19 19 setContent(new JPanel(new GridBagLayout()));
Note:
See TracChangeset
for help on using the changeset viewer.