Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1237 → Rev 1238

/TCPproxy/trunk/AboutForm.cs
131,8 → 131,8
 
private void AboutForm_Load(object sender, EventArgs e)
{
Assembly running = Assembly.GetExecutingAssembly();
AssemblyName name = running.GetName();
Assembly running = Assembly.GetExecutingAssembly();
AssemblyName name = running.GetName();
 
// get version
versionLabel.Text = string.Format("Version {0}.{1}.{2}",
154,8 → 154,8
}
 
// show
this.Text = string.Format("About {0}", title);
appNameLabel.Text = title;
this.Text = string.Format("About {0}", title);
appNameLabel.Text = title;
copyrightLabel.Text = copyright;
}
}