Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/11 09:13:15 (13 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/ItemCollectionView.cs

    r5239 r5287  
    128128        try {
    129129          return (T)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
    130         }
    131         catch (Exception ex) {
     130        } catch (Exception ex) {
    132131          ErrorHandling.ShowErrorDialog(this, ex);
    133132        }
     
    139138      if (item == null) {
    140139        listViewItem.Text = "null";
    141         itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing);
     140        itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Nothing);
    142141        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
    143142      } else {
     
    179178      T item = listViewItem.Tag as T;
    180179      int i = listViewItem.ImageIndex;
    181       listViewItem.ImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing : item.ItemImage;
     180      listViewItem.ImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage;
    182181      listViewItem.ImageIndex = -1;
    183182      listViewItem.ImageIndex = i;
     
    383382      foreach (ListViewItem listViewItem in itemsListView.Items) {
    384383        T item = listViewItem.Tag as T;
    385         itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing : item.ItemImage);
     384        itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage);
    386385        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
    387386      }
Note: See TracChangeset for help on using the changeset viewer.