Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/23/11 04:13:08 (13 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

File:
1 edited

Legend:

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

    r5533 r5550  
    9898
    9999    private void refreshUsersButton_Click(object sender, System.EventArgs e) {
    100       List<Guid> ids = AdministrationClient.Instance.GetProblemUsers(Content.Id);
     100      List<Guid> ids = AdministrationClient.GetProblemUsers(Content.Id);
    101101      if (ids != null) {
    102102        List<User> users = AuthenticationClient.Instance.Users.ToList();
     
    111111    }
    112112    private void storeUsersButton_Click(object sender, System.EventArgs e) {
    113       if (AdministrationClient.Instance.UpdateProblemUsers(Content.Id, usersListBox.SelectedItems.Cast<User>().Select(u => u.Id).ToList()))
    114         storeUsersButton.Enabled = false;
     113      AdministrationClient.UpdateProblemUsers(Content.Id, usersListBox.SelectedItems.Cast<User>().Select(u => u.Id).ToList());
     114      storeUsersButton.Enabled = false;
    115115    }
    116116    private void usersListBox_SelectedIndexChanged(object sender, EventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.