Index: /applications/editors/josm/plugins/graphview/build.xml
===================================================================
--- /applications/editors/josm/plugins/graphview/build.xml	(revision 19438)
+++ /applications/editors/josm/plugins/graphview/build.xml	(revision 19439)
@@ -27,6 +27,6 @@
 <project name="graphview" default="dist" basedir=".">
 
-	<property name="commit.message" value="Updated to JOSM r2748" />
-	<property name="plugin.main.version" value="2748" />
+	<property name="commit.message" value="Changed the constructor signature of the plugin main class" />
+	<property name="plugin.main.version" value="2830" />
 	
     <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
Index: /applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/GraphViewPlugin.java
===================================================================
--- /applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/GraphViewPlugin.java	(revision 19438)
+++ /applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/GraphViewPlugin.java	(revision 19439)
@@ -21,4 +21,5 @@
 import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
 import org.openstreetmap.josm.plugins.Plugin;
+import org.openstreetmap.josm.plugins.PluginInformation;
 import org.openstreetmap.josm.plugins.graphview.core.access.AccessRuleset;
 import org.openstreetmap.josm.plugins.graphview.core.access.AccessRulesetReader;
@@ -74,5 +75,6 @@
 
 	/** creates the plugin */
-	public GraphViewPlugin() {
+	public GraphViewPlugin(PluginInformation info) {
+		super(info);
 
 		preferences = GraphViewPreferences.getInstance();
