Revision: 3599
Author: [email protected]
Date: Fri Jun 11 09:27:03 2010
Log: NEW - bug 2458: Create Critic Manager
http://trillian.sqlpower.ca/bugzilla/show_bug.cgi?id=2458

Fixed the badge staying beside dragged objects. Accidentally changed the revalidation listener to a pooling listener when
the other removed objects were changed.
http://code.google.com/p/power-architect/source/detail?r=3599

Modified:
 /trunk/src/main/java/ca/sqlpower/architect/swingui/critic/CriticBadge.java

=======================================
--- /trunk/src/main/java/ca/sqlpower/architect/swingui/critic/CriticBadge.java Fri Jun 11 09:19:49 2010 +++ /trunk/src/main/java/ca/sqlpower/architect/swingui/critic/CriticBadge.java Fri Jun 11 09:27:03 2010
@@ -28,6 +28,7 @@
 import ca.sqlpower.architect.ddl.critic.Criticism;
 import ca.sqlpower.architect.swingui.PlayPenComponent;
 import ca.sqlpower.object.AbstractPoolingSPListener;
+import ca.sqlpower.object.AbstractSPListener;
 import ca.sqlpower.object.CleanupExceptions;
 import ca.sqlpower.object.SPChildEvent;
 import ca.sqlpower.object.SPListener;
@@ -59,10 +60,10 @@
* Listener attached to the {...@link #UIOfSubject} object to be notified when
      * it moves. This lets us correct our location to give chase.
      */
- private final SPListener UISubjectMoveListener = new AbstractPoolingSPListener() { + private final SPListener UISubjectMoveListener = new AbstractSPListener() {

         @Override
-        public void propertyChangeImpl(PropertyChangeEvent evt) {
+        public void propertyChanged(PropertyChangeEvent evt) {
             revalidate();
         }
     };

Reply via email to