commit | 81fd5244d4f89d4586cf7241386a00e286c267e6 | [log] [tgz] |
---|---|---|
author | fabbott@google.com <fabbott@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Tue Jan 20 23:06:01 2009 +0000 |
committer | fabbott@google.com <fabbott@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Tue Jan 20 23:06:01 2009 +0000 |
tree | eb7508b532ec54941b2586f1d1608ee9b0669d64 | |
parent | a22719f4af71d162001042bd7912ba152697b1b7 [diff] |
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();