Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10366 for trunk/sources


Ignore:
Timestamp:
01/22/14 13:46:30 (10 years ago)
Author:
abeham
Message:

#2042: Also renamed properties of BidirectionalDictionary so that the two have similar names for similar things

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Collections/3.3/BidirectionalDictionary.cs

    r9456 r10366  
    6767    }
    6868
    69     public IEnumerable<TFirst> FirstValues {
     69    public IEnumerable<TFirst> FirstKeys {
    7070      get { return firstToSecond.Keys; }
    7171    }
    7272
    73     public IEnumerable<TSecond> SecondValues {
     73    public IEnumerable<TSecond> SecondKeys {
    7474      get { return secondToFirst.Keys; }
    7575    }
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization.Views/3.3/GraphVisualizationInfoView.cs

    r9456 r10366  
    8484
    8585    private void UpdateContent() {
    86       foreach (IConnectionInfo connectionInfo in this.connectionInfoConnectionMapping.FirstValues.ToList())
     86      foreach (IConnectionInfo connectionInfo in this.connectionInfoConnectionMapping.FirstKeys.ToList())
    8787        this.RemoveConnectionInfo(connectionInfo);
    8888      this.connectionInfoConnectionMapping.Clear();
    89       foreach (IShapeInfo shapeInfo in this.shapeInfoShapeMapping.FirstValues.ToList())
     89      foreach (IShapeInfo shapeInfo in this.shapeInfoShapeMapping.FirstKeys.ToList())
    9090        this.RemoveShapeInfo(shapeInfo);
    9191      this.shapeInfoShapeMapping.Clear();
Note: See TracChangeset for help on using the changeset viewer.