summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorJohn Ahlroos <john@vaadin.com>2012-09-27 15:43:03 +0300
committerJohn Ahlroos <john@vaadin.com>2012-09-27 15:43:03 +0300
commitcadaf08d4093073b5c40e4ed8073d67a369ff4b8 (patch)
tree9b38d266b466eb5122779c5770318c2745ccdcf3 /client
parentc886d0d45c45aae2bac026ca7fac9f33b7075832 (diff)
downloadvaadin-framework-cadaf08d4093073b5c40e4ed8073d67a369ff4b8.tar.gz
vaadin-framework-cadaf08d4093073b5c40e4ed8073d67a369ff4b8.zip
Fixed NativeButton broken styles #9724
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/ui/nativebutton/NativeButtonConnector.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/com/vaadin/client/ui/nativebutton/NativeButtonConnector.java b/client/src/com/vaadin/client/ui/nativebutton/NativeButtonConnector.java
index 75a4d3f893..6bcb2c8cbf 100644
--- a/client/src/com/vaadin/client/ui/nativebutton/NativeButtonConnector.java
+++ b/client/src/com/vaadin/client/ui/nativebutton/NativeButtonConnector.java
@@ -29,7 +29,7 @@ import com.vaadin.client.ui.Icon;
import com.vaadin.shared.communication.FieldRpc.FocusAndBlurServerRpc;
import com.vaadin.shared.ui.Connect;
import com.vaadin.shared.ui.button.ButtonServerRpc;
-import com.vaadin.shared.ui.button.ButtonState;
+import com.vaadin.shared.ui.button.NativeButtonState;
import com.vaadin.ui.NativeButton;
@Connect(NativeButton.class)
@@ -115,8 +115,8 @@ public class NativeButtonConnector extends AbstractComponentConnector implements
}
@Override
- public ButtonState getState() {
- return (ButtonState) super.getState();
+ public NativeButtonState getState() {
+ return (NativeButtonState) super.getState();
}
@Override