Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/06/11 18:33:03 (14 years ago)
Author:
ascheibe
Message:

#1233

  • code cleanups for slave review
  • added switch between privileged and unprivileged sandbox
  • removed childjob management because it's not used
Location:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon/MainWindow.Designer.cs

    r6263 r6371  
    189189      this.tabAbout.Location = new System.Drawing.Point(4, 22);
    190190      this.tabAbout.Name = "tabAbout";
    191       this.tabAbout.Size = new System.Drawing.Size(577, 347);
     191      this.tabAbout.Size = new System.Drawing.Size(597, 367);
    192192      this.tabAbout.TabIndex = 2;
    193193      this.tabAbout.Text = "About HeuristicLab Hive";
     
    215215      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
    216216      this.Name = "MainWindow";
    217       this.Text = "HeuristicLab Hive Slave View";
     217      this.Text = "HeuristicLab Hive Slave";
    218218      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
    219219      this.contextMenuNotifyIcon.ResumeLayout(false);
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon/Program.cs

    r6257 r6371  
    2525        mw.RestoreFromTray();
    2626      }
    27      
    2827
    2928      mw.Content = new SlaveItem();
    30 
    3129      Application.Run();
    3230    }
     
    3634    /// (based on http://www.codeproject.com/KB/cs/processownersid.aspx)
    3735    /// </summary>   
    38     public static string GetProcessOwner(int pid) {
     36    private static string GetProcessOwner(int pid) {
    3937      string ownerSID = String.Empty;
    4038      string processName = String.Empty;
     
    5957
    6058    /// <summary>
    61     /// kill all other slave tray icons, we only want 1 running at a time
     59    /// Kill all other slave tray icons, we only want 1 running at a time
    6260    /// (and if a newer version is installed the older one should be killed)
    6361    /// </summary>
Note: See TracChangeset for help on using the changeset viewer.