]> granicus.if.org Git - icinga2/commitdiff
Fix possible crash in Icinga 2 Setup Wizard
authorJean Flach <jean-marcel.flach@netways.de>
Mon, 23 Nov 2015 13:12:25 +0000 (14:12 +0100)
committerJean Flach <jean-marcel.flach@netways.de>
Wed, 25 Nov 2015 09:41:57 +0000 (10:41 +0100)
fixes #10708

agent/windows-setup-agent/Program.cs

index dea5a0f28fac90f4288d6a71babecd9191f3bd28..a36af0ef928a723a40e82c34c1542bf1711fe252 100644 (file)
@@ -23,7 +23,7 @@ namespace Icinga
 
                public static void FatalError(Form owner, string message)
                {
-                       MessageBox.Show(owner, message, owner.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
+                       MessageBox.Show(owner, message, "Icinga 2 Setup Wizard", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        Application.Exit();
                }