summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2010-08-27 08:43:02 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2010-08-27 08:43:02 +0000
commit6001ff1c5c055767a6cc47e7d1c883c1608cdafb (patch)
treefd3f840faa420939eec371bb0368a690d878ae6f /src/com
parent1272338a219538c4f5978a0691b0044fb337d993 (diff)
downloadvaadin-framework-6001ff1c5c055767a6cc47e7d1c883c1608cdafb.tar.gz
vaadin-framework-6001ff1c5c055767a6cc47e7d1c883c1608cdafb.zip
fixes #5498
svn changeset:14633/svn branch:6.4
Diffstat (limited to 'src/com')
-rw-r--r--src/com/vaadin/ui/LoginForm.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/ui/LoginForm.java b/src/com/vaadin/ui/LoginForm.java
index 4505044a24..a1cff5f0de 100644
--- a/src/com/vaadin/ui/LoginForm.java
+++ b/src/com/vaadin/ui/LoginForm.java
@@ -66,7 +66,7 @@ public class LoginForm extends CustomComponent {
}
public String getMIMEType() {
- return "text/html";
+ return "text/html; charset=utf-8";
}
};
@@ -188,7 +188,7 @@ public class LoginForm extends CustomComponent {
// form
window = getWindow();
if (window.getParent() != null) {
- window = (Window) window.getParent();
+ window = window.getParent();
}
super.detach();
}