X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=OpenTween%2FTweenAboutBox.cs;h=ca8654278aa2f436f10903e994e9ff39df084eff;hb=d28a534bb744c907c77ac0f41f3f3a299e950836;hp=34c0c4ff780a83273b95ce60b6ad1ee227df5074;hpb=67ee3449cb6e619ab8c20597a416139026280a54;p=opentween%2Fopen-tween.git diff --git a/OpenTween/TweenAboutBox.cs b/OpenTween/TweenAboutBox.cs index 34c0c4ff..ca865427 100644 --- a/OpenTween/TweenAboutBox.cs +++ b/OpenTween/TweenAboutBox.cs @@ -6,19 +6,19 @@ // (c) 2010-2011 fantasticswallow (@f_swallow) // (c) 2011 kim_upsilon (@kim_upsilon) // All rights reserved. -// +// // This file is part of OpenTween. -// +// // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free // Software Foundation; either version 3 of the License, or (at your option) // any later version. -// +// // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -// for more details. -// +// for more details. +// // You should have received a copy of the GNU General Public License along // with this program. If not, see , or write to // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, @@ -32,9 +32,9 @@ using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; +using System.Reflection; using System.Text; using System.Windows.Forms; -using System.Reflection; namespace OpenTween { @@ -49,19 +49,20 @@ namespace OpenTween this.Text = MyCommon.ReplaceAppName(this.Text); // バージョン情報ボックスに表示されたテキストをすべて初期化します。 - // TODO: [プロジェクト] メニューの下にある [プロジェクト プロパティ] ダイアログの [アプリケーション] ペインで、アプリケーションのアセンブリ情報を + // TODO: [プロジェクト] メニューの下にある [プロジェクト プロパティ] ダイアログの [アプリケーション] ペインで、アプリケーションのアセンブリ情報を // カスタマイズします。 this.LabelProductName.Text = ApplicationSettings.ApplicationName; this.LabelVersion.Text = string.Format(Properties.Resources.TweenAboutBox_LoadText2, MyCommon.GetReadableVersion()); - this.LabelCopyright.Text = GetApplicationAttribute().Copyright; + this.LabelCopyright.Text = this.GetApplicationAttribute().Copyright; this.LabelCompanyName.Text = Application.CompanyName; - this.TextBoxDescription.Text = GetApplicationAttribute().Description; + this.TextBoxDescription.Text = this.GetApplicationAttribute().Description; this.ChangeLog.Text = Properties.Resources.ChangeLog; this.TextBoxDescription.Text = string.Format(Properties.Resources.Description, ApplicationSettings.FeedbackTwitterName, ApplicationSettings.FeedbackEmailAddress) + Environment.NewLine + Environment.NewLine + "This software was created by The OpenTween Project, based on Tween v1.1.0.0, which is licensed under GPLv3."; } - protected T GetApplicationAttribute() where T : Attribute + protected T GetApplicationAttribute() + where T : Attribute { var currentAssembly = Assembly.GetExecutingAssembly();