Changeset 2938d318 in vaadin
- Timestamp:
- 03/15/12 11:42:10 (14 months ago)
- Branches:
- master, 7.0, 7.1
- Children:
- 6704241d
- Parents:
- 92e7ba65
- git-author:
- Artur Signell <artur@…> (03/15/12 11:42:10)
- git-committer:
- Artur Signell <artur@…> (03/15/12 11:42:10)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/com/vaadin/terminal/gwt/client/ui/VMeasuringOrderedLayout.java
rce42589a r2938d318 86 86 87 87 public VLayoutSlot getSlotForChild(Widget widget) { 88 return (VLayoutSlot) widget.getLayoutData(); 88 Object o = widget.getLayoutData(); 89 if (o instanceof VLayoutSlot) { 90 return (VLayoutSlot) o; 91 } 92 93 return null; 89 94 } 90 95
Note: See TracChangeset
for help on using the changeset viewer.
