diff options
author | Ray Cromwell <cromwellian@gmail.com> | 2008-06-03 23:49:13 +0000 |
---|---|---|
committer | Ray Cromwell <cromwellian@gmail.com> | 2008-06-03 23:49:13 +0000 |
commit | 43d15a0f77eca0820ee4f195cd9c364c489c9945 (patch) | |
tree | b8e2c53a08b83807da0eb97cebbfc72b60b19eb7 | |
parent | 84b16e70640b7c29179105898a45b168092cc87e (diff) | |
download | gwtquery-43d15a0f77eca0820ee4f195cd9c364c489c9945.tar.gz gwtquery-43d15a0f77eca0820ee4f195cd9c364c489c9945.zip |
fixed compiler issue
5 files changed, 8 insertions, 5 deletions
diff --git a/gwtquery-core/src/main/java/gwtquery/GwtQuery.gwt.xml b/gwtquery-core/src/main/java/gwtquery/GwtQuery.gwt.xml index 4153d1a9..aa236dfb 100644 --- a/gwtquery-core/src/main/java/gwtquery/GwtQuery.gwt.xml +++ b/gwtquery-core/src/main/java/gwtquery/GwtQuery.gwt.xml @@ -91,5 +91,4 @@ </all>
</replace-with>
- <!--<set-property name="selectorCapability" value="js"/>-->
-</module>
\ No newline at end of file + </module>
\ No newline at end of file diff --git a/gwtquery-core/src/main/java/gwtquery/rebind/SelectorGeneratorBase.java b/gwtquery-core/src/main/java/gwtquery/rebind/SelectorGeneratorBase.java index c511189e..3cf2c2e7 100644 --- a/gwtquery-core/src/main/java/gwtquery/rebind/SelectorGeneratorBase.java +++ b/gwtquery-core/src/main/java/gwtquery/rebind/SelectorGeneratorBase.java @@ -156,8 +156,8 @@ public abstract class SelectorGeneratorBase extends Generator { = new ClassSourceFileComposerFactory(packageName, className);
composerFactory.setSuperclass("gwtquery.client.SelectorEngine");
composerFactory.addImport("com.google.gwt.core.client.GWT");
- composerFactory.addImport("gwtquery.client.GQuery");
- composerFactory.addImport("gwtquery.client.JSArray");
+ composerFactory.addImport("gwtquery.client.*");
+// composerFactory.addImport("gwtquery.client.JSArray");
composerFactory.addImport("com.google.gwt.dom.client.*");
for (String interfaceName : interfaceNames) {
diff --git a/samples/pom.xml b/samples/pom.xml index f19bec37..fdc780e4 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -25,7 +25,7 @@ <artifactId>maven-googlewebtoolkit2-plugin</artifactId> <configuration> <gwtVersion>${gwtversion}</gwtVersion> - <logLevel>SPAM</logLevel> + <logLevel>INFO</logLevel> <runTarget> gwtquery.samples.GwtQueryDemo/index.html </runTarget> diff --git a/samples/src/main/java/gwtquery/samples/GwtQueryDemo.gwt.xml b/samples/src/main/java/gwtquery/samples/GwtQueryDemo.gwt.xml index 04f5137f..3569b0b5 100644 --- a/samples/src/main/java/gwtquery/samples/GwtQueryDemo.gwt.xml +++ b/samples/src/main/java/gwtquery/samples/GwtQueryDemo.gwt.xml @@ -1,5 +1,7 @@ <module> <inherits name='gwtquery.GwtQuery'/> <entry-point class='gwtquery.samples.client.GwtQueryDemoModule'/> + + </module> diff --git a/samples/src/main/java/gwtquery/samples/GwtQuerySample.gwt.xml b/samples/src/main/java/gwtquery/samples/GwtQuerySample.gwt.xml index e4cf455e..7e09e39e 100644 --- a/samples/src/main/java/gwtquery/samples/GwtQuerySample.gwt.xml +++ b/samples/src/main/java/gwtquery/samples/GwtQuerySample.gwt.xml @@ -1,5 +1,7 @@ <module> <inherits name='gwtquery.GwtQuery'/> <entry-point class='gwtquery.samples.client.GwtQuerySampleModule'/> + + </module> |