dev
Révision | f5f2f941ab6a1bc02335f772402fc2783010713a (tree) |
---|---|
l'heure | 2013-01-20 19:31:38 |
Auteur | Kimura Youichi <kim.upsilon@bucy...> |
Commiter | Kimura Youichi |
二重起動エラーのメッセージに書式指定項目 {0} がそのまま表示されている問題を修正
@@ -87,13 +87,15 @@ namespace OpenTween | ||
87 | 87 | if (!rslt) |
88 | 88 | { |
89 | 89 | // 警告を表示(見つからない、またはその他の原因で失敗) |
90 | - MessageBox.Show(MyCommon.ReplaceAppName(Properties.Resources.StartupText1), MyCommon.ReplaceAppName(Properties.Resources.StartupText2), MessageBoxButtons.OK, MessageBoxIcon.Information); | |
90 | + var text = string.Format(MyCommon.ReplaceAppName(Properties.Resources.StartupText1), MyCommon.GetAssemblyName()); | |
91 | + MessageBox.Show(text, MyCommon.ReplaceAppName(Properties.Resources.StartupText2), MessageBoxButtons.OK, MessageBoxIcon.Information); | |
91 | 92 | } |
92 | 93 | } |
93 | 94 | else |
94 | 95 | { |
95 | 96 | // 警告を表示(プロセス見つからない場合) |
96 | - MessageBox.Show(MyCommon.ReplaceAppName(Properties.Resources.StartupText1), MyCommon.ReplaceAppName(Properties.Resources.StartupText2), MessageBoxButtons.OK, MessageBoxIcon.Information); | |
97 | + var text = string.Format(MyCommon.ReplaceAppName(Properties.Resources.StartupText1), MyCommon.GetAssemblyName()); | |
98 | + MessageBox.Show(text, MyCommon.ReplaceAppName(Properties.Resources.StartupText2), MessageBoxButtons.OK, MessageBoxIcon.Information); | |
97 | 99 | } |
98 | 100 | } |
99 | 101 | } |