]> source.dussan.org Git - vaadin-framework.git/commitdiff
Rename deRegisterDependency -> unregisterDependency
authorLeif Åstrand <leif@vaadin.com>
Thu, 23 Feb 2012 14:10:34 +0000 (16:10 +0200)
committerLeif Åstrand <leif@vaadin.com>
Thu, 23 Feb 2012 14:10:34 +0000 (16:10 +0200)
src/com/vaadin/terminal/gwt/client/MeasuredSize.java
src/com/vaadin/terminal/gwt/client/ui/layout/VPaintableLayoutSlot.java

index 26cda54a00adf161177506b0b3dd60f73426f308..d45c5381c943239f5285130b47043e9c0d776f04 100644 (file)
@@ -75,7 +75,7 @@ public final class MeasuredSize {
         }
     }
 
-    public void deRegisterDependency(Element element) {
+    public void unregisterDependency(Element element) {
         dependencySizes.remove(element);
     }
 
index 94f4feb4ecdcd59983a3cdb859f3e95d3620ae70..b2786ad0a0b2bd898dbc1ff30c28c7fc6cf3c2c2 100644 (file)
@@ -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) {