aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui/AbstractComponent.java
diff options
context:
space:
mode:
authorJouni Koivuviita <jouni.koivuviita@itmill.com>2008-10-16 11:42:19 +0000
committerJouni Koivuviita <jouni.koivuviita@itmill.com>2008-10-16 11:42:19 +0000
commit1f85c25a457a4fdc65420bb73fa89491445c7b04 (patch)
tree64d6cd5c3561e08d3e39614748a38b65b9a0faab /src/com/itmill/toolkit/ui/AbstractComponent.java
parentbf8b1eb1f702ba0aac654c73416f0b84297ceddc (diff)
downloadvaadin-framework-1f85c25a457a4fdc65420bb73fa89491445c7b04.tar.gz
vaadin-framework-1f85c25a457a4fdc65420bb73fa89491445c7b04.zip
Fixes #2141: Subwindow rendering broken in IE6 and IE7
Needed a bit more tweaking than simple themeing. IWindow not sets all its dimensions (those sent from server) as its outer width and height. Previously dimensions were set as "inner dimensions" i.e. content area width. svn changeset:5647/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/ui/AbstractComponent.java')
-rw-r--r--src/com/itmill/toolkit/ui/AbstractComponent.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/itmill/toolkit/ui/AbstractComponent.java b/src/com/itmill/toolkit/ui/AbstractComponent.java
index a641ef3bd8..7155c759c6 100644
--- a/src/com/itmill/toolkit/ui/AbstractComponent.java
+++ b/src/com/itmill/toolkit/ui/AbstractComponent.java
@@ -161,6 +161,7 @@ public abstract class AbstractComponent implements Component, MethodEventSource
* indicate that "style" should not be used to switch client
* side implementation, only to style the component.
*/
+ @Deprecated
public String getStyle() {
return getStyleName();
}
@@ -177,6 +178,7 @@ public abstract class AbstractComponent implements Component, MethodEventSource
* indicate that "style" should not be used to switch client
* side implementation, only to style the component.
*/
+ @Deprecated
public void setStyle(String style) {
setStyleName(style);
}