Browse Source

Added missing cast (#9342)

Change-Id: If8078ffea6fd2bcaf62591ed8930905cdc1d3a1d
tags/7.0.0.beta9
Artur Signell 11 years ago
parent
commit
88f28be83d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      server/src/com/vaadin/ui/Component.java

+ 1
- 1
server/src/com/vaadin/ui/Component.java View File

@@ -753,7 +753,7 @@ public interface Component extends ClientConnector, Sizeable, Serializable {
* @return the source component of the event
*/
public Component getComponent() {
return getSource();
return (Component) getSource();
}

}

Loading…
Cancel
Save