Changeset 7334 for branches/OKB (trunk integration)
- Timestamp:
- 01/16/12 15:42:11 (13 years ago)
- Location:
- branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/Administration/ServiceClient/OKBItem.cs
r7331 r7334 39 39 get { return ItemAttribute.GetVersion(this.GetType()); } 40 40 } 41 public static Image StaticItemImage { 42 get { return HeuristicLab.Common.Resources.VSImageLibrary.Database; } 43 } 41 44 public virtual Image ItemImage { 42 45 get { … … 44 47 return HeuristicLab.Common.Resources.VSImageLibrary.DatabaseModified; 45 48 else 46 return HeuristicLab.Common.Resources.VSImageLibrary.Database;49 return ItemAttribute.GetImage(this.GetType()); 47 50 } 48 51 } -
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBAlgorithm.cs
r7331 r7334 87 87 } 88 88 89 public static new Image StaticItemImage { 90 get { return HeuristicLab.Common.Resources.VSImageLibrary.Event; } 91 } 92 89 93 public string Name { 90 94 get { return Algorithm.Name; } -
branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBProblem.cs
r7331 r7334 72 72 } 73 73 74 public static new Image StaticItemImage { 75 get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; } 76 } 77 74 78 public string Name { 75 79 get { return Problem.Name; }
Note: See TracChangeset
for help on using the changeset viewer.