Makes User depend upon UiBinder, to keep people from having to think about turning it on. Review by: bobv git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@6633 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/User.gwt.xml b/user/src/com/google/gwt/user/User.gwt.xml index 15e7dc5..0c35ed4 100644 --- a/user/src/com/google/gwt/user/User.gwt.xml +++ b/user/src/com/google/gwt/user/User.gwt.xml
@@ -23,6 +23,7 @@ <inherits name="com.google.gwt.animation.Animation"/> <inherits name="com.google.gwt.resources.Resources"/> <inherits name="com.google.gwt.layout.Layout"/> + <inherits name="com.google.gwt.uibinder.UiBinder"/> <inherits name="com.google.gwt.user.AsyncProxy"/> <inherits name="com.google.gwt.user.RemoteService"/> <inherits name="com.google.gwt.user.DocumentRoot" />
diff --git a/user/test/com/google/gwt/uibinder/test/UiBinderTestApp.gwt.xml b/user/test/com/google/gwt/uibinder/test/UiBinderTestApp.gwt.xml index 190e301..75532fb 100644 --- a/user/test/com/google/gwt/uibinder/test/UiBinderTestApp.gwt.xml +++ b/user/test/com/google/gwt/uibinder/test/UiBinderTestApp.gwt.xml
@@ -13,7 +13,7 @@ <!-- GWT UiBinder support. --> <module> - <inherits name="com.google.gwt.uibinder.UiBinder" /> + <inherits name="com.google.gwt.user.User" /> <inherits name="com.google.gwt.debug.Debug"/> <entry-point class="com.google.gwt.uibinder.test.client.UiBinderTestApp" /> </module>