]> source.dussan.org Git - vaadin-framework.git/commitdiff
svn changeset:3777/svn branch:trunk
authorJani Laakso <jani.laakso@itmill.com>
Tue, 12 Feb 2008 11:39:23 +0000 (11:39 +0000)
committerJani Laakso <jani.laakso@itmill.com>
Tue, 12 Feb 2008 11:39:23 +0000 (11:39 +0000)
src/com/itmill/toolkit/tests/ListenerOrder.java

index 6db79a199999d7bb72fe6494f8b84ad0cb5fbae7..76c50ae69aa1511fe686ed69e3f3d746504f6922 100644 (file)
@@ -144,19 +144,19 @@ public class ListenerOrder extends com.itmill.toolkit.Application implements
     public void containerPropertySetChange(PropertySetChangeEvent event) {
         String msg = "containerPropertySetChange from " + this;
         System.out.println(msg);
-        // getMainWindow().showNotification(msg);
+        getMainWindow().showNotification(msg);
     }
 
     public void containerItemSetChange(ItemSetChangeEvent event) {
         String msg = "containerItemSetChange from " + this;
         System.out.println(msg);
-        // getMainWindow().showNotification(msg);
+        getMainWindow().showNotification(msg);
     }
 
     public void valueChange(ValueChangeEvent event) {
         String msg = "valueChange from " + this;
         System.out.println(msg);
-        // getMainWindow().showNotification(msg);
+        getMainWindow().showNotification(msg);
     }
 
 }