diff options
author | Pacien TRAN-GIRARD | 2014-05-18 15:36:42 +0200 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2014-05-18 15:36:42 +0200 |
commit | 2ffb953d3adf1a977cc884343a00c9104d3436e9 (patch) | |
tree | aca50e7310a82c1efd2f008eec03cbd12e6944e0 | |
parent | e37dc7b99ffa2c518bb1ab8a5d46074587d1c911 (diff) | |
download | esieequest-2ffb953d3adf1a977cc884343a00c9104d3436e9.tar.gz |
Fix default messages
-rw-r--r-- | src/esieequest/view/web/WebInterface.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/esieequest/view/web/WebInterface.java b/src/esieequest/view/web/WebInterface.java index 14dfa1d..07bb60a 100644 --- a/src/esieequest/view/web/WebInterface.java +++ b/src/esieequest/view/web/WebInterface.java | |||
@@ -93,6 +93,9 @@ class WebInterface extends Composite implements Viewable { | |||
93 | public WebInterface() { | 93 | public WebInterface() { |
94 | this.initWidget(WebInterface.uiBinder.createAndBindUi(this)); | 94 | this.initWidget(WebInterface.uiBinder.createAndBindUi(this)); |
95 | 95 | ||
96 | this.displayLabel.setText(Text.DEFAULT_CONSOLE.toString()); | ||
97 | this.questLabel.setText(Text.DEFAULT_QUEST_TITLE.toString()); | ||
98 | |||
96 | final Label emptyLabel = new Label(Text.INVENTORY_EMPTY.toString()); | 99 | final Label emptyLabel = new Label(Text.INVENTORY_EMPTY.toString()); |
97 | this.inventoryPanel.add(emptyLabel); | 100 | this.inventoryPanel.add(emptyLabel); |
98 | 101 | ||