buildbreak fix, that onScriptLoad needs to be given gwtOnLoad as its 
argument.

Review by: jat


git-svn-id: https://google-web-toolkit.googlecode.com/svn/releases/1.6@4504 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/core/linker/SingleScriptLinker.java b/dev/core/src/com/google/gwt/core/linker/SingleScriptLinker.java
index c4b3186..61a4371 100644
--- a/dev/core/src/com/google/gwt/core/linker/SingleScriptLinker.java
+++ b/dev/core/src/com/google/gwt/core/linker/SingleScriptLinker.java
@@ -93,7 +93,7 @@
     // Generate the call to tell the bootstrap code that we're ready to go.
     out.newlineOpt();
     out.print("if (" + context.getModuleFunctionName() + ") "
-        + context.getModuleFunctionName() + ".onScriptLoad();");
+        + context.getModuleFunctionName() + ".onScriptLoad(gwtOnLoad);");
     out.newlineOpt();
     out.print("})();");
     out.newlineOpt();
diff --git a/dev/core/src/com/google/gwt/core/linker/XSLinker.java b/dev/core/src/com/google/gwt/core/linker/XSLinker.java
index b53fa8c..d028248 100644
--- a/dev/core/src/com/google/gwt/core/linker/XSLinker.java
+++ b/dev/core/src/com/google/gwt/core/linker/XSLinker.java
@@ -80,7 +80,7 @@
     // Generate the call to tell the bootstrap code that we're ready to go.
     out.newlineOpt();
     out.print("if (" + context.getModuleFunctionName() + ") "
-        + context.getModuleFunctionName() + ".onScriptLoad();");
+        + context.getModuleFunctionName() + ".onScriptLoad(gwtOnLoad);");
     out.newlineOpt();
     out.print("})();");
     out.newlineOpt();