Fix possible crash in Icinga 2 Setup Wizard

fixes #10708
This commit is contained in:
Jean Flach 2015-11-23 14:12:25 +01:00
parent 57c5262e5b
commit 6a5f3e4cbd
1 changed files with 1 additions and 1 deletions

View 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();
}