Index: /applications/editors/josm/plugins/photoadjust/build.xml
===================================================================
--- /applications/editors/josm/plugins/photoadjust/build.xml	(revision 33302)
+++ /applications/editors/josm/plugins/photoadjust/build.xml	(revision 33303)
@@ -5,5 +5,5 @@
     <property name="commit.message" value="Commit message"/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-    <property name="plugin.main.version" value="10580"/>
+    <property name="plugin.main.version" value="11713"/>
 
     <!-- Configure these properties (replace "..." accordingly).
Index: /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustMapMode.java
===================================================================
--- /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustMapMode.java	(revision 33302)
+++ /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustMapMode.java	(revision 33303)
@@ -46,5 +46,5 @@
     private boolean ignoreOneGILayer = false;
 
-    public PhotoAdjustMapMode(MapFrame mapFrame, PhotoAdjustWorker worker) {
+    public PhotoAdjustMapMode(PhotoAdjustWorker worker) {
         super(tr("Adjust photos"), "photoadjust.png",
               tr("Move and position photos"),
@@ -53,5 +53,5 @@
                                         tr("Mode: {0}", tr("Adjust photos")),
                                         KeyEvent.CHAR_UNDEFINED, Shortcut.NONE),
-              mapFrame, Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
+              Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
         GeoImageLayer.registerSupportedMapMode(this);
         initAdapters();
Index: /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustPlugin.java
===================================================================
--- /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustPlugin.java	(revision 33302)
+++ /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustPlugin.java	(revision 33303)
@@ -78,5 +78,5 @@
         if (oldFrame == null && newFrame != null) {
             Main.getLayerManager().addAndFireActiveLayerChangeListener(this);
-            PhotoAdjustMapMode adjustMode = new PhotoAdjustMapMode(newFrame, worker);
+            PhotoAdjustMapMode adjustMode = new PhotoAdjustMapMode(worker);
             adjustMode.installMapMode(newFrame);
         } else {
Index: /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoPropertyEditor.java
===================================================================
--- /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoPropertyEditor.java	(revision 33302)
+++ /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoPropertyEditor.java	(revision 33303)
@@ -431,5 +431,5 @@
             LatLon latLon;
             try {
-                latLon = LatLonDialog.parseLatLon(coords.getText());
+                latLon = LatLon.parse(coords.getText());
                 if (!latLon.isValid()) {
                     latLon = null;
@@ -453,5 +453,5 @@
             final String coordsText = coords.getText();
             try {
-                latLon = LatLonDialog.parseLatLon(coordsText);
+                latLon = LatLon.parse(coordsText);
             } catch (IllegalArgumentException exn) {
                 latLon = null;
