summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--client/src/com/vaadin/client/ui/VRichTextArea.java2
-rw-r--r--client/src/com/vaadin/client/ui/richtextarea/RichTextAreaConnector.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/ui/VRichTextArea.java b/client/src/com/vaadin/client/ui/VRichTextArea.java
index 7ed6e7c78a..8a6ba3fc1e 100644
--- a/client/src/com/vaadin/client/ui/VRichTextArea.java
+++ b/client/src/com/vaadin/client/ui/VRichTextArea.java
@@ -395,7 +395,7 @@ public class VRichTextArea extends Composite implements Field, KeyPressHandler,
*
* @return cleaned html string
*/
- public String getSanitazedValue() {
+ public String getSanitizedValue() {
BrowserInfo browser = BrowserInfo.get();
String result = getValue();
if (browser.isFirefox()) {
diff --git a/client/src/com/vaadin/client/ui/richtextarea/RichTextAreaConnector.java b/client/src/com/vaadin/client/ui/richtextarea/RichTextAreaConnector.java
index 8135777c0a..20dfc74c69 100644
--- a/client/src/com/vaadin/client/ui/richtextarea/RichTextAreaConnector.java
+++ b/client/src/com/vaadin/client/ui/richtextarea/RichTextAreaConnector.java
@@ -102,7 +102,7 @@ public class RichTextAreaConnector extends AbstractFieldConnector implements
@Override
public void flush() {
if (getConnection() != null && getConnectorId() != null) {
- final String html = getWidget().getSanitazedValue();
+ final String html = getWidget().getSanitizedValue();
if (!html.equals(cachedValue)) {
getConnection().updateVariable(getConnectorId(), "text", html,
getState().immediate);