Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/24/14 23:51:04 (10 years ago)
Author:
swagner
Message:

#2205: Worked on optimization networks

Location:
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/Ports
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/Ports/PortParameter.cs

    r11499 r11500  
    7171          this.defaultValue = value;
    7272          RegisterDefaultValueEvents();
    73           OnValueChanged();
     73          OnDefaultValueChanged();
    7474        }
    7575      }
     
    123123    }
    124124
    125     public event EventHandler ValueChanged;
    126     protected virtual void OnValueChanged() {
    127       var handler = ValueChanged;
     125    public event EventHandler DefaultValueChanged;
     126    protected virtual void OnDefaultValueChanged() {
     127      var handler = DefaultValueChanged;
    128128      if (handler != null) handler(this, EventArgs.Empty);
    129129      OnToStringChanged();
Note: See TracChangeset for help on using the changeset viewer.