/**
  * Clean up attached actions that were just deleted from the GlobalActionList
  *
  * @since 7.0
  */
 protected void HandleDeleteButton() {
   // First remove any attached action that was just deleted
   ITracepointAction[] selectedActions = globalActionsList.getSelectedActions();
   for (ITracepointAction action : selectedActions) {
     actionsList.removeAction(action);
   }
   // Now cleanup the global action list
   globalActionsList.HandleDeleteButton();
 }