Skip to content

Commit

Permalink
fixed GWT definition and stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
dermetfan committed Oct 17, 2014
1 parent 05c6bff commit b8ecf91
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion core/src/BiometrySom.gwt.xml → core/src/OcrSom.gwt.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit trunk//EN" "http://google-web-toolkit.googlecode.com/svn/trunk/distro-source/core/src/gwt-module.dtd">
<module>
<source path="br/lopes/biometrySom"/>
<source path="br/lopes/ocrSom"/>
<inherits name="libgdx-utils"/>
</module>
2 changes: 1 addition & 1 deletion html/src/br/lopes/ocrSom/GdxDefinition.gwt.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<module rename-to="html">
<inherits name='com.badlogic.gdx.backends.gdx_backends_gwt' />

<inherits name='BiometrySom' />
<inherits name='OcrSom' />
<entry-point class='br.lopes.ocrSom.client.HtmlLauncher' />

<set-configuration-property name="gdx.assetpath" value="../android/assets" />
Expand Down
2 changes: 1 addition & 1 deletion html/src/br/lopes/ocrSom/GdxDefinitionSuperdev.gwt.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<module rename-to="html">
<inherits name='com.badlogic.gdx.backends.gdx_backends_gwt' />

<inherits name='BiometrySom' />
<inherits name='OcrSom' />
<entry-point class='br.lopes.ocrSom.client.HtmlLauncher' />

<add-linker name="xsiframe"/>
Expand Down
4 changes: 2 additions & 2 deletions html/src/br/lopes/ocrSom/client/HtmlLauncher.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package br.lopes.ocrSom.client;

import br.lopes.ocrSom.OcrSom;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.backends.gwt.GwtApplication;
import com.badlogic.gdx.backends.gwt.GwtApplicationConfiguration;
import br.lopes.ocrSom.BiometrySom;

public class HtmlLauncher extends GwtApplication {

Expand All @@ -14,6 +14,6 @@ public GwtApplicationConfiguration getConfig () {

@Override
public ApplicationListener getApplicationListener () {
return new BiometrySom();
return new OcrSom();
}
}

0 comments on commit b8ecf91

Please sign in to comment.