Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9230


Ignore:
Timestamp:
02/19/13 13:17:26 (11 years ago)
Author:
ascheibe
Message:

#2005 properly implemented closing of the hive job manager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobManagerView.cs

    r9224 r9230  
    127127      } else {
    128128        base.OnClosing(e);
    129         if (Content != null) {
    130           Content.ClearHiveClient();
    131           Content = null;
    132         }
    133129      }
     130    }
     131
     132    protected override void OnClosed(FormClosedEventArgs e) {
     133      if (Content != null) {
     134        Content.ClearHiveClient();
     135        Content = null;
     136      }
     137      base.OnClosed(e);
    134138    }
    135139  }
Note: See TracChangeset for help on using the changeset viewer.