commit | 349dabd52dccf9a84e44549c140a5db2d8890ec0 | [log] [tgz] |
---|---|---|
author | fabbott@google.com <fabbott@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Tue Jan 20 23:07:43 2009 +0000 |
committer | fabbott@google.com <fabbott@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Tue Jan 20 23:07:43 2009 +0000 |
tree | cd647546d5f9c66b71afd7395e38ac10e7948436 | |
parent | 8b5d293f6e1f7803f930d8c9cebef72db0517dd0 [diff] |
upmerge of buildbreak fix for XSLinker and StandaloneScriptLinker git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@4505 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 7a69716..b31ff09 100644 --- a/dev/core/src/com/google/gwt/core/linker/SingleScriptLinker.java +++ b/dev/core/src/com/google/gwt/core/linker/SingleScriptLinker.java
@@ -115,7 +115,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 0511b40..6d551fe 100644 --- a/dev/core/src/com/google/gwt/core/linker/XSLinker.java +++ b/dev/core/src/com/google/gwt/core/linker/XSLinker.java
@@ -97,7 +97,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();