Index: applications/editors/josm/plugins/CommandLine/build.xml
===================================================================
--- applications/editors/josm/plugins/CommandLine/build.xml	(revision 25059)
+++ applications/editors/josm/plugins/CommandLine/build.xml	(revision 25060)
@@ -3,5 +3,5 @@
 
     <!-- enter the SVN commit message -->
-    <property name="commit.message" value="Small bugfix for correct xml file opening" />
+    <property name="commit.message" value="Moar bugfixes" />
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
     <property name="plugin.main.version" value="3751" />
Index: applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLineAction.java
===================================================================
--- applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLineAction.java	(revision 25059)
+++ applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLineAction.java	(revision 25060)
@@ -40,5 +40,5 @@
 	
 	public CommandLineAction(CommandLine parentPlugin) {
-		super(tr("Command line"), "simplify", tr("Set input focus to the command line."),
+		super(tr("Command line"), "blankmenu", tr("Set input focus to the command line."),
 		Shortcut.registerShortcut("edit:simplifyArea", tr("Tool: {0}", tr("Command line")), KeyEvent.VK_ENTER, Shortcut.GROUP_DIRECT, 0), true);
 		this.parentPlugin = parentPlugin;
Index: applications/editors/josm/plugins/CommandLine/src/CommandLine/LengthAction.java
===================================================================
--- applications/editors/josm/plugins/CommandLine/src/CommandLine/LengthAction.java	(revision 25059)
+++ applications/editors/josm/plugins/CommandLine/src/CommandLine/LengthAction.java	(revision 25060)
@@ -60,5 +60,5 @@
 
 	public LengthAction(MapFrame mapFrame, CommandLine parentPlugin) {
-		super(null, "building", null, mapFrame, ImageProvider.getCursor("crosshair", null));
+		super(null, "addsegment.png", null, mapFrame, ImageProvider.getCursor("crosshair", null));
 		this.parentPlugin = parentPlugin;
 		selectedColor = Main.pref.getColor(marktr("selected"), Color.red);
Index: applications/editors/josm/plugins/CommandLine/src/CommandLine/Loader.java
===================================================================
--- applications/editors/josm/plugins/CommandLine/src/CommandLine/Loader.java	(revision 25059)
+++ applications/editors/josm/plugins/CommandLine/src/CommandLine/Loader.java	(revision 25060)
@@ -57,5 +57,7 @@
 	private void loadFile(SAXParser parser, String fileName) {
 		try {
-			parser.parse(new File(fileName).toURI().toString(), this);
+			String a = new File(fileName).toURI().toString().replace("file:/", "file:///");
+			System.out.println(a);
+			parser.parse(a, this);
 		}
 		catch (Exception e) {
