aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-04-04 23:01:47 +0300
committerArtur Signell <artur@vaadin.com>2013-04-04 23:01:47 +0300
commit9b7b7edc5f54c6e33defed41dc4874df52496247 (patch)
tree2e37dd6d8cc50b6d3b31f9bdb0d3a1bf35d9f967 /client
parentf980667fdfef13bcb3bfcd7e86910bed39f39bb2 (diff)
downloadvaadin-framework-9b7b7edc5f54c6e33defed41dc4874df52496247.tar.gz
vaadin-framework-9b7b7edc5f54c6e33defed41dc4874df52496247.zip
Fixed compilation error
Change-Id: I033d9950298f574e2200913a7b1307101bad0878
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/ui/AriaHelper.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ui/AriaHelper.java b/client/src/com/vaadin/client/ui/AriaHelper.java
index 10038a720f..9f7210f86c 100644
--- a/client/src/com/vaadin/client/ui/AriaHelper.java
+++ b/client/src/com/vaadin/client/ui/AriaHelper.java
@@ -68,7 +68,7 @@ public class AriaHelper {
* @param widget
* Widget, that was bound to a caption before
*/
- private static void clearCaption(Widget widget) {
+ public static void clearCaption(Widget widget) {
Roles.getTextboxRole()
.removeAriaLabelledbyProperty(widget.getElement());
}