Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/29/11 00:31:42 (14 years ago)
Author:
cneumuel
Message:

#1233

  • corrected relative reference paths in csproj-files
  • fixed minor bugs
  • updated binaries
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/Administration/ResourcesView.cs

    r5711 r5852  
    8484            tn.Tag = g;
    8585            tn.Text = g.Name;
    86             foreach (Slave s in Content.Where(s => s.ParentResourceId != null && s.ParentResourceId == g.Id)) {
    87               var stn = new TreeNode(s.Name);
     86            foreach (Resource r in Content.Where(s => s.ParentResourceId != null && s.ParentResourceId == g.Id)) {
     87              var stn = new TreeNode(r.Name);
    8888              stn.ImageIndex = 0;
    8989              stn.SelectedImageIndex = stn.ImageIndex;
    90               stn.Tag = s;
     90              stn.Tag = r;
    9191              tn.Nodes.Add(stn);
    9292            }
Note: See TracChangeset for help on using the changeset viewer.