Index: applications/editors/josm/plugins/reverter/build.xml
===================================================================
--- applications/editors/josm/plugins/reverter/build.xml	(revision 22532)
+++ applications/editors/josm/plugins/reverter/build.xml	(revision 22533)
@@ -31,7 +31,7 @@
 
 	<!-- enter the SVN commit message -->
-	<property name="commit.message" value="Added image icon" />
+	<property name="commit.message" value="update to josm latest" />
 	<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-	<property name="plugin.main.version" value="3336" />
+	<property name="plugin.main.version" value="3403" />
 
 
Index: applications/editors/josm/plugins/reverter/src/reverter/ChangesetIdQuery.java
===================================================================
--- applications/editors/josm/plugins/reverter/src/reverter/ChangesetIdQuery.java	(revision 22532)
+++ applications/editors/josm/plugins/reverter/src/reverter/ChangesetIdQuery.java	(revision 22533)
@@ -4,4 +4,5 @@
 
 import java.awt.GridBagLayout;
+import java.awt.Insets;
 import java.text.NumberFormat;
 import java.text.ParseException;
@@ -44,5 +45,5 @@
     public ChangesetIdQuery() {
         super(Main.parent, tr("Revert changeset"), new String[] {tr("Revert"),tr("Cancel")}, true);
-        contentConstraints = GBC.eol().fill().insets(10,10,10,5);
+        contentInsets = new Insets(10,10,10,5);
         setButtonIcons(new String[] {"ok.png", "cancel.png" });
         JPanel panel = new JPanel(new GridBagLayout());
Index: applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryDialog.java
===================================================================
--- applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryDialog.java	(revision 22532)
+++ applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryDialog.java	(revision 22533)
@@ -4,4 +4,5 @@
 
 import java.awt.GridBagLayout;
+import java.awt.Insets;
 
 import javax.swing.JPanel;
@@ -9,5 +10,4 @@
 import org.openstreetmap.josm.Main;
 import org.openstreetmap.josm.gui.ExtendedDialog;
-import org.openstreetmap.josm.tools.GBC;
 
 @SuppressWarnings("serial")
@@ -15,5 +15,5 @@
     public ObjectsHistoryDialog() {
         super(Main.parent, tr("Objects history"), new String[] {"Revert","Cancel"}, false);
-        contentConstraints = GBC.eol().fill().insets(10,10,10,5);
+        contentInsets = new Insets(10,10,10,5);
         setButtonIcons(new String[] {"ok.png", "cancel.png" });
         setContent(new JPanel(new GridBagLayout()));
