Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/10 03:29:02 (15 years ago)
Author:
swagner
Message:

Continued work on adapting and refactoring HeuristicLab.Data according to the changes in HeuristicLab.Core (#95)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core/3.3/NamedItemCollection.cs

    r2664 r2669  
    114114
    115115    private void Item_NameChanging(object sender, CancelEventArgs<string> e) {
    116       e.Cancel = this.ContainsKey(e.Value);
     116      e.Cancel = e.Cancel || this.ContainsKey(e.Value);
    117117    }
    118118    private void Item_NameChanged(object sender, EventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.