Show svn revision number in about boxes

This commit is contained in:
adelikat 2012-04-21 15:25:47 +00:00
parent e43b53aba8
commit aecd849eb5
3 changed files with 7 additions and 1 deletions

View File

@ -169,7 +169,7 @@ namespace BizHawk.MultiClient
private void AboutBox_Load(object sender, EventArgs e) private void AboutBox_Load(object sender, EventArgs e)
{ {
Text = "BizHawk Interim Build SVN r" + SubWCRev.SVN_REV;
} }
private void Close_Click(object sender, EventArgs e) private void Close_Click(object sender, EventArgs e)

View File

@ -171,6 +171,7 @@
this.MinimumSize = new System.Drawing.Size(405, 219); this.MinimumSize = new System.Drawing.Size(405, 219);
this.Name = "BizBox"; this.Name = "BizBox";
this.Text = " BizHawk"; this.Text = " BizHawk";
this.Load += new System.EventHandler(this.BizBox_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();

View File

@ -26,5 +26,10 @@ namespace BizHawk.MultiClient
{ {
this.Close(); this.Close();
} }
private void BizBox_Load(object sender, EventArgs e)
{
Text = " BizHawk (SVN r" + SubWCRev.SVN_REV + ")";
}
} }
} }