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
Location:
trunk/sources/HeuristicLab.Operators.Programmable/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperator.cs

    r5217 r5287  
    5252    }
    5353
    54     public override System.Drawing.Image ItemImage { get { return VS2008ImageLibrary.Script; } }
     54    public override System.Drawing.Image ItemImage { get { return VSImageLibrary.Script; } }
    5555
    5656    private MethodInfo executeMethod;
  • trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.Designer.cs

    r5218 r5287  
    120120      // splitContainer2
    121121      //
    122       this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
    123             | System.Windows.Forms.AnchorStyles.Left) 
     122      this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     123            | System.Windows.Forms.AnchorStyles.Left)
    124124            | System.Windows.Forms.AnchorStyles.Right)));
    125125      this.splitContainer2.Location = new System.Drawing.Point(0, 33);
     
    183183      // showCodeButton
    184184      //
    185       this.showCodeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.PrintPreview;
     185      this.showCodeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PrintPreview;
    186186      this.showCodeButton.Location = new System.Drawing.Point(33, 3);
    187187      this.showCodeButton.Name = "showCodeButton";
     
    195195      // compileButton
    196196      //
    197       this.compileButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Script;
     197      this.compileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Script;
    198198      this.compileButton.Location = new System.Drawing.Point(3, 3);
    199199      this.compileButton.Name = "compileButton";
     
    219219      // tabControl1
    220220      //
    221       this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
    222             | System.Windows.Forms.AnchorStyles.Left) 
     221      this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     222            | System.Windows.Forms.AnchorStyles.Left)
    223223            | System.Windows.Forms.AnchorStyles.Right)));
    224224      this.tabControl1.Controls.Add(this.tabPage1);
  • trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.cs

    r5218 r5287  
    4747      InitializeComponent();
    4848      namespacesTreeView.ImageList = new ImageList();
    49       namespacesTreeView.ImageList.Images.Add(VS2008ImageLibrary.Namespace);
     49      namespacesTreeView.ImageList.Images.Add(VSImageLibrary.Namespace);
    5050      assembliesTreeView.ImageList = new ImageList();
    51       assembliesTreeView.ImageList.Images.Add(VS2008ImageLibrary.Assembly);
    52       assembliesTreeView.ImageList.Images.Add(VS2008ImageLibrary.Module);
     51      assembliesTreeView.ImageList.Images.Add(VSImageLibrary.Assembly);
     52      assembliesTreeView.ImageList.Images.Add(VSImageLibrary.Module);
    5353    }
    5454
     
    203203      try {
    204204        ProgrammableOperator.Compile();
    205       }
    206       catch (Exception ex) {
     205      } catch (Exception ex) {
    207206        ErrorHandling.ShowErrorDialog(this, ex);
    208207      }
Note: See TracChangeset for help on using the changeset viewer.