Bläddra i källkod

Rename deRegisterDependency -> unregisterDependency

tags/7.0.0.alpha2
Leif Åstrand 12 år sedan
förälder
incheckning
8549962a33

+ 1
- 1
src/com/vaadin/terminal/gwt/client/MeasuredSize.java Visa fil

@@ -75,7 +75,7 @@ public final class MeasuredSize {
}
}

public void deRegisterDependency(Element element) {
public void unregisterDependency(Element element) {
dependencySizes.remove(element);
}


+ 1
- 1
src/com/vaadin/terminal/gwt/client/ui/layout/VPaintableLayoutSlot.java Visa fil

@@ -42,7 +42,7 @@ public class VPaintableLayoutSlot extends VLayoutSlot {
public void setCaption(VCaption caption) {
VCaption oldCaption = getCaption();
if (oldCaption != null) {
getParentSize().deRegisterDependency(oldCaption.getElement());
getParentSize().unregisterDependency(oldCaption.getElement());
}
super.setCaption(caption);
if (caption != null) {

Laddar…
Avbryt
Spara