Remove "Cancel" option where not necessary

This commit is contained in:
Kaphotics
2016-02-09 15:35:56 -08:00
parent 97b766eadb
commit da862c2ae5
2 changed files with 2 additions and 2 deletions

View File

@@ -3118,7 +3118,7 @@ private void B_OpenPokedex_Click(object sender, EventArgs e)
}
private void B_OUTPasserby_Click(object sender, EventArgs e)
{
if (DialogResult.Yes != Util.Prompt(MessageBoxButtons.YesNoCancel, "Export Passerby Info to Clipboard?"))
if (DialogResult.Yes != Util.Prompt(MessageBoxButtons.YesNo, "Export Passerby Info to Clipboard?"))
return;
string result = "PSS List" + Environment.NewLine;

View File

@@ -299,7 +299,7 @@ private void resetFilters(object sender, EventArgs e)
}
private void generateDBReport(object sender, EventArgs e)
{
if (Util.Prompt(MessageBoxButtons.YesNoCancel, "Generate a Report on all data?", "This may take a while...")
if (Util.Prompt(MessageBoxButtons.YesNo, "Generate a Report on all data?", "This may take a while...")
!= DialogResult.Yes)
return;