Browse Source

Fix a typo

svn changeset:24019/svn branch:6.8
tags/7.0.0.beta1
Johannes Dahlström 12 years ago
parent
commit
b6ea64e917
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/com/vaadin/terminal/gwt/client/VUIDLBrowser.java

+ 2
- 2
src/com/vaadin/terminal/gwt/client/VUIDLBrowser.java View File

@@ -29,7 +29,7 @@ import com.vaadin.terminal.gwt.client.ui.VView;
import com.vaadin.terminal.gwt.client.ui.VWindow;

public class VUIDLBrowser extends SimpleTree {
private static final String HELP = "Shift click handle to open recursively. Click components to hightlight them on client side. Shift click components to highlight them also on the server side.";
private static final String HELP = "Shift click handle to open recursively. Click components to highlight them on client side. Shift click components to highlight them also on the server side.";
private ApplicationConfiguration conf;
private String highlightedPid;

@@ -201,7 +201,7 @@ public class VUIDLBrowser extends SimpleTree {
tmp.addItem(name + "=" + value);
}
if (tmp != null) {
add(tmp);
add(tmp);
}
} catch (final Exception e) {
// Ignored, no variables

Loading…
Cancel
Save