aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorJohn Ahlroos <john@vaadin.com>2013-05-31 09:15:20 +0300
committerJohn Ahlroos <john@vaadin.com>2013-05-31 09:17:39 +0300
commit57b7335f647dcb8343d35b975b138c361de28326 (patch)
treedffaa2634978446e35814a98863d04e323d0c255 /client
parent9a3dc4e99c7a417778342db83cd6e7c05558e5fb (diff)
downloadvaadin-framework-57b7335f647dcb8343d35b975b138c361de28326.tar.gz
vaadin-framework-57b7335f647dcb8343d35b975b138c361de28326.zip
Fixed spelling mistake in API #11741
Change-Id: I1bf04abd4c49a452f00fb0ab07b20f82ad6d62a2
Diffstat (limited to 'client')
-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);