Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/12/10 04:53:48 (15 years ago)
Author:
swagner
Message:

Implemented reviewers' comments (#893).

Location:
trunk/sources/HeuristicLab.Analysis/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis/3.3/DataTable.cs

    r3160 r3306  
    2020#endregion
    2121
     22using System.Drawing;
    2223using HeuristicLab.Core;
    2324using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    3031  [StorableClass]
    3132  public sealed class DataTable : NamedItem {
     33    public override Image ItemImage {
     34      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Table; }
     35    }
     36
    3237    [Storable]
    3338    private NamedItemCollection<DataRow> rows;
  • trunk/sources/HeuristicLab.Analysis/3.3/HeuristicLab.Analysis-3.3.csproj

    r3095 r3306  
    7373      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    7474    </Reference>
     75    <Reference Include="System.Drawing" />
    7576    <Reference Include="System.Xml.Linq">
    7677      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    103104      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
    104105      <Name>HeuristicLab.Collections-3.3</Name>
     106    </ProjectReference>
     107    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.2\HeuristicLab.Common.Resources-3.2.csproj">
     108      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
     109      <Name>HeuristicLab.Common.Resources-3.2</Name>
    105110    </ProjectReference>
    106111    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
  • trunk/sources/HeuristicLab.Analysis/3.3/HeuristicLabAnalysisPlugin.cs.frame

    r2891 r3306  
    2929  [PluginFile("HeuristicLab.Analysis-3.3.dll", PluginFileType.Assembly)]
    3030  [PluginDependency("HeuristicLab.Collections", "3.3")]
     31  [PluginDependency("HeuristicLab.Common.Resources", "3.2")]
    3132  [PluginDependency("HeuristicLab.Core", "3.3")]
    3233  [PluginDependency("HeuristicLab.Data", "3.3")]
Note: See TracChangeset for help on using the changeset viewer.