Show svn revision number in about boxes
This commit is contained in:
parent
e43b53aba8
commit
aecd849eb5
|
@ -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)
|
||||||
|
|
|
@ -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();
|
||||||
|
|
|
@ -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 + ")";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue