You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2007/10/03 10:58:21 UTC

svn commit: r581533 - /directory/studio/trunk/studio-schemaeditor/src/main/java/org/apache/directory/studio/schemaeditor/view/views/SchemaViewContentProvider.java

Author: pamarcelot
Date: Wed Oct  3 01:58:21 2007
New Revision: 581533

URL: http://svn.apache.org/viewvc?rev=581533&view=rev
Log:
Fixed an issue when updating an OC or AT.
The modified wrappers did not redraw their children.

Modified:
    directory/studio/trunk/studio-schemaeditor/src/main/java/org/apache/directory/studio/schemaeditor/view/views/SchemaViewContentProvider.java

Modified: directory/studio/trunk/studio-schemaeditor/src/main/java/org/apache/directory/studio/schemaeditor/view/views/SchemaViewContentProvider.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/studio-schemaeditor/src/main/java/org/apache/directory/studio/schemaeditor/view/views/SchemaViewContentProvider.java?rev=581533&r1=581532&r2=581533&view=diff
==============================================================================
--- directory/studio/trunk/studio-schemaeditor/src/main/java/org/apache/directory/studio/schemaeditor/view/views/SchemaViewContentProvider.java (original)
+++ directory/studio/trunk/studio-schemaeditor/src/main/java/org/apache/directory/studio/schemaeditor/view/views/SchemaViewContentProvider.java Wed Oct  3 01:58:21 2007
@@ -601,6 +601,7 @@
                 }
                 atw.getParent().addChild( atw );
                 elementsToWrappersMap.put( at, atw );
+                addHierarchyChildren( atw, hierarchyManager.getChildren( at ) );
             }
         }
     }
@@ -840,6 +841,7 @@
                 }
                 ocw.getParent().addChild( ocw );
                 elementsToWrappersMap.put( oc, ocw );
+                addHierarchyChildren( ocw, hierarchyManager.getChildren( oc ) );
             }
         }
     }