Skip to content

Commit

Permalink
small fixes on scg demo
Browse files Browse the repository at this point in the history
  • Loading branch information
CedricReichenbach committed Apr 29, 2013
1 parent 54ae4b7 commit 87df0f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Demos/SCG_Demo/src/demo_scg/plugin/MyStringPlugin.java
Expand Up @@ -21,7 +21,7 @@ public Set<Class<?>> getDrawableClasses() {
public void render(Object object, Tag tag) throws DoodleRenderException {
String string = (String) object;

tag.add(string.toString());
tag.add(string);
Tag charNumber = new Tag("span", "class=charNumber");
charNumber.add(string.length());
tag.add(charNumber);
Expand All @@ -33,7 +33,7 @@ public void renderSimplified(Object object, Tag tag)
throws DoodleRenderException {
String string = (String) object;

tag.add(string.toString());
tag.add(string);
}

@Override
Expand Down
Binary file modified presentations/Demo DoodleDebug Spring 2013.pptx
Binary file not shown.

0 comments on commit 87df0f6

Please sign in to comment.