Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/11 09:13:15 (14 years ago)
Author:
abeham
Message:

#1337

  • Renamed VS2008ImageLibrary resource to VSImageLibrary
  • Added Filter icon to the VS2010ImageLibrary folder and the resource manager
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemArrayView.cs

    r5239 r5287  
    139139        try {
    140140          return (T)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
    141         }
    142         catch (Exception ex) {
     141        } catch (Exception ex) {
    143142          ErrorHandling.ShowErrorDialog(this, ex);
    144143        }
     
    150149      if (item == null) {
    151150        listViewItem.Text = "null";
    152         itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing);
     151        itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Nothing);
    153152        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
    154153      } else {
     
    197196      T item = listViewItem.Tag as T;
    198197      int i = listViewItem.ImageIndex;
    199       listViewItem.ImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing : item.ItemImage;
     198      listViewItem.ImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage;
    200199      listViewItem.ImageIndex = -1;
    201200      listViewItem.ImageIndex = i;
     
    445444      foreach (ListViewItem listViewItem in itemsListView.Items) {
    446445        T item = listViewItem.Tag as T;
    447         itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing : item.ItemImage);
     446        itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage);
    448447        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
    449448      }
Note: See TracChangeset for help on using the changeset viewer.