From 30f73b2c6b94e6f5415d5be32f63cc4a8ca4e603 Mon Sep 17 00:00:00 2001 From: MaxXor Date: Thu, 29 Jan 2015 09:57:42 +0100 Subject: [PATCH] Delete frmAbout.cs --- Server/Forms/frmAbout.cs | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 Server/Forms/frmAbout.cs diff --git a/Server/Forms/frmAbout.cs b/Server/Forms/frmAbout.cs deleted file mode 100644 index da0c37f1..00000000 --- a/Server/Forms/frmAbout.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace xServer.Forms -{ - public partial class FrmAbout : Form - { - public FrmAbout() - { - InitializeComponent(); - - lblVersion.Text = Settings.XMLSettings.VERSION; - rtxtContent.Text = Properties.Resources.TermsOfUse; - - lblCredits.Text = - "Credits: Banksy\n" + - " ResourceLib (Copyright (c) Daniel Doubrovkine, Vestris Inc., 2008-2013)\n" + - " protobuf (Copyright 2008 Google Inc.)\n\n" + - "Elevation Form Translators: Xenocode, Increment, DeadLine, Perfectionist,\n" + - " Qmz_, GameFire, navaro21"; - } - - private void btnOkay_Click(object sender, EventArgs e) - { - this.Close(); - } - } -}