Free cookie consent management tool by TermsFeed Policy Generator

Changeset 7427


Ignore:
Timestamp:
01/27/12 21:29:34 (12 years ago)
Author:
ascheibe
Message:

#1174 updated views to work with the changes of r7426

Location:
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/Administration/Views
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/Administration/Views/AlgorithmView.cs

    r7376 r7427  
    158158    private void storeUsersButton_Click(object sender, System.EventArgs e) {
    159159      try {
    160         AdministrationClient.UpdateAlgorithmUsers(Content.Id, refreshableLightweightUserView.GetCheckedUsers().CheckedItems.Select(x => x.Value.Id).ToList());
     160        AdministrationClient.UpdateAlgorithmUsers(Content.Id, refreshableLightweightUserView.GetCheckedUsers().Select(x => x.Id).ToList());
    161161        storeUsersButton.Enabled = false;
    162162      }
  • branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/Administration/Views/ProblemView.cs

    r7381 r7427  
    158158    private void storeUsersButton_Click(object sender, System.EventArgs e) {
    159159      try {
    160         AdministrationClient.UpdateProblemUsers(Content.Id, problemUserView.GetCheckedUsers().CheckedItems.Select(x => x.Value.Id).ToList());
     160        AdministrationClient.UpdateProblemUsers(Content.Id, problemUserView.GetCheckedUsers().Select(x => x.Id).ToList());
    161161        storeUsersButton.Enabled = false;
    162162      }
Note: See TracChangeset for help on using the changeset viewer.