#60730: Closing VCSGroups component when VCS core module uninstalls BLD200509041800
authormsandor@netbeans.org
Thu, 01 Sep 2005 12:07:32 +0000
changeset 6375123ccee817e0
parent 6374 96e9174b801d
child 6376 3555679b5395
#60730: Closing VCSGroups component when VCS core module uninstalls
vcscore/src/org/netbeans/modules/vcscore/VcsModule.java
     1.1 --- a/vcscore/src/org/netbeans/modules/vcscore/VcsModule.java	Thu Sep 01 09:15:54 2005 +0000
     1.2 +++ b/vcscore/src/org/netbeans/modules/vcscore/VcsModule.java	Thu Sep 01 12:07:32 2005 +0000
     1.3 @@ -15,6 +15,7 @@
     1.4  
     1.5  import org.netbeans.modules.vcscore.turbo.Turbo;
     1.6  import org.netbeans.modules.vcscore.versioning.impl.VersioningExplorer;
     1.7 +import org.netbeans.modules.vcscore.grouping.VcsGroupMenuAction;
     1.8  import org.openide.modules.ModuleInstall;
     1.9  
    1.10  /**
    1.11 @@ -34,6 +35,7 @@
    1.12          javax.swing.SwingUtilities.invokeLater(new Runnable() {
    1.13              public void run() {
    1.14                  VersioningExplorer.getRevisionExplorer().close();
    1.15 +                VcsGroupMenuAction.GroupExplorerPanel.getDefault().close();
    1.16              }
    1.17          });
    1.18      }