Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5289


Ignore:
Timestamp:
01/13/11 00:03:00 (13 years ago)
Author:
swagner
Message:

Renamed VS2008ImageLibrary to VSImageLibrary (#1174)

Location:
branches/OKB/HeuristicLab.Clients.OKB-3.3
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/OKBExperiment.cs

    r4929 r5289  
    3939      get {
    4040        if (Algorithm != null) return Algorithm.ItemImage;
    41         else return HeuristicLab.Common.Resources.VS2008ImageLibrary.Event;
     41        else return HeuristicLab.Common.Resources.VSImageLibrary.Event;
    4242      }
    4343    }
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/OKBItem.cs

    r4918 r5289  
    4242      get {
    4343        if (Modified)
    44           return HeuristicLab.Common.Resources.VS2008ImageLibrary.DatabaseModified;
     44          return HeuristicLab.Common.Resources.VSImageLibrary.DatabaseModified;
    4545        else
    46           return HeuristicLab.Common.Resources.VS2008ImageLibrary.Database;
     46          return HeuristicLab.Common.Resources.VSImageLibrary.Database;
    4747      }
    4848    }
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/AdministratorView.Designer.cs

    r4481 r5289  
    205205      // refreshButton
    206206      //
    207       this.refreshButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     207      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    208208      this.refreshButton.Location = new System.Drawing.Point(0, 0);
    209209      this.refreshButton.Name = "refreshButton";
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/AlgorithmDataView.Designer.cs

    r4492 r5289  
    130130      // newDataButton
    131131      //
    132       this.newDataButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
     132      this.newDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.NewDocument;
    133133      this.newDataButton.Location = new System.Drawing.Point(90, 0);
    134134      this.newDataButton.Name = "newDataButton";
     
    141141      // saveFileButton
    142142      //
    143       this.saveFileButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save;
     143      this.saveFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
    144144      this.saveFileButton.Location = new System.Drawing.Point(150, 0);
    145145      this.saveFileButton.Name = "saveFileButton";
     
    152152      // openFileButton
    153153      //
    154       this.openFileButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
     154      this.openFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
    155155      this.openFileButton.Location = new System.Drawing.Point(120, 0);
    156156      this.openFileButton.Name = "openFileButton";
     
    173173      // refreshDataButton
    174174      //
    175       this.refreshDataButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     175      this.refreshDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    176176      this.refreshDataButton.Location = new System.Drawing.Point(0, 0);
    177177      this.refreshDataButton.Name = "refreshDataButton";
     
    184184      // storeDataButton
    185185      //
    186       this.storeDataButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.PublishToWeb;
     186      this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
    187187      this.storeDataButton.Location = new System.Drawing.Point(30, 0);
    188188      this.storeDataButton.Name = "storeDataButton";
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/AlgorithmView.Designer.cs

    r4929 r5289  
    174174      // storeUsersButton
    175175      //
    176       this.storeUsersButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.PublishToWeb;
     176      this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
    177177      this.storeUsersButton.Location = new System.Drawing.Point(36, 6);
    178178      this.storeUsersButton.Name = "storeUsersButton";
     
    185185      // refreshUsersButton
    186186      //
    187       this.refreshUsersButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     187      this.refreshUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    188188      this.refreshUsersButton.Location = new System.Drawing.Point(6, 6);
    189189      this.refreshUsersButton.Name = "refreshUsersButton";
     
    246246      // refreshParametersButton
    247247      //
    248       this.refreshParametersButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     248      this.refreshParametersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    249249      this.refreshParametersButton.Location = new System.Drawing.Point(6, 6);
    250250      this.refreshParametersButton.Name = "refreshParametersButton";
     
    281281      // refreshResultsButton
    282282      //
    283       this.refreshResultsButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     283      this.refreshResultsButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    284284      this.refreshResultsButton.Location = new System.Drawing.Point(6, 6);
    285285      this.refreshResultsButton.Name = "refreshResultsButton";
     
    303303      // refreshExperimentsButton
    304304      //
    305       this.refreshExperimentsButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     305      this.refreshExperimentsButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    306306      this.refreshExperimentsButton.Location = new System.Drawing.Point(6, 6);
    307307      this.refreshExperimentsButton.Name = "refreshExperimentsButton";
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/CombinedFilterView.Designer.cs

    r5286 r5289  
    8686      //
    8787      this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    88       this.addButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
     88      this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
    8989      this.addButton.Location = new System.Drawing.Point(3, 3);
    9090      this.addButton.Name = "addButton";
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/CombinedFilterView.cs

    r5286 r5289  
    7272      removeButton.Size = new System.Drawing.Size(24, 24);
    7373      removeButton.Anchor = AnchorStyles.Top | AnchorStyles.Right;
    74       removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
     74      removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
    7575      removeButton.Tag = filter;
    7676      removeButton.Click += new System.EventHandler(removeButton_Click);
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/ExperimentView.Designer.cs

    r4943 r5289  
    198198      // refreshRunsButton
    199199      //
    200       this.refreshRunsButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     200      this.refreshRunsButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    201201      this.refreshRunsButton.Location = new System.Drawing.Point(6, 6);
    202202      this.refreshRunsButton.Name = "refreshRunsButton";
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/OKBItemView.Designer.cs

    r4492 r5289  
    5252      // storeButton
    5353      //
    54       this.storeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.PublishToWeb;
     54      this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
    5555      this.storeButton.Location = new System.Drawing.Point(0, 0);
    5656      this.storeButton.Name = "storeButton";
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/ProblemDataView.Designer.cs

    r4492 r5289  
    130130      // newDataButton
    131131      //
    132       this.newDataButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
     132      this.newDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.NewDocument;
    133133      this.newDataButton.Location = new System.Drawing.Point(90, 0);
    134134      this.newDataButton.Name = "newDataButton";
     
    141141      // saveFileButton
    142142      //
    143       this.saveFileButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save;
     143      this.saveFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
    144144      this.saveFileButton.Location = new System.Drawing.Point(150, 0);
    145145      this.saveFileButton.Name = "saveFileButton";
     
    152152      // openFileButton
    153153      //
    154       this.openFileButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
     154      this.openFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
    155155      this.openFileButton.Location = new System.Drawing.Point(120, 0);
    156156      this.openFileButton.Name = "openFileButton";
     
    173173      // refreshDataButton
    174174      //
    175       this.refreshDataButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     175      this.refreshDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    176176      this.refreshDataButton.Location = new System.Drawing.Point(0, 0);
    177177      this.refreshDataButton.Name = "refreshDataButton";
     
    184184      // storeDataButton
    185185      //
    186       this.storeDataButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.PublishToWeb;
     186      this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
    187187      this.storeDataButton.Location = new System.Drawing.Point(30, 0);
    188188      this.storeDataButton.Name = "storeDataButton";
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/ProblemView.Designer.cs

    r4492 r5289  
    159159      // storeUsersButton
    160160      //
    161       this.storeUsersButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.PublishToWeb;
     161      this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
    162162      this.storeUsersButton.Location = new System.Drawing.Point(36, 6);
    163163      this.storeUsersButton.Name = "storeUsersButton";
     
    170170      // refreshUsersButton
    171171      //
    172       this.refreshUsersButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     172      this.refreshUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    173173      this.refreshUsersButton.Location = new System.Drawing.Point(6, 6);
    174174      this.refreshUsersButton.Name = "refreshUsersButton";
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/QueryView.Designer.cs

    r5286 r5289  
    6565      // refreshButton
    6666      //
    67       this.refreshButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     67      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    6868      this.refreshButton.Location = new System.Drawing.Point(6, 19);
    6969      this.refreshButton.Name = "refreshButton";
Note: See TracChangeset for help on using the changeset viewer.