Misc clean

meh
This commit is contained in:
Kurt 2019-02-02 15:20:08 -08:00
parent f481404503
commit 2eef523475
4 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@ namespace PKHeX.Core
private readonly List<StorageSlotOffset> Slots = new List<StorageSlotOffset>();
public SlotDaycare(SaveFile sav, bool locked)
: base(sav, (int) 2, locked)
: base(sav, 2, locked)
{
ReloadDaycareSlots();
}

View file

@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using static PKHeX.Core.LegalityCheckStrings;
namespace PKHeX.Core

View file

@ -1081,7 +1081,7 @@ namespace PKHeX.WinForms.Controls
}
catch
{
WinFormsUtil.Error(MessageStrings.MsgClipboardFailWrite);
WinFormsUtil.Error(MsgClipboardFailWrite);
}
}

View file

@ -296,6 +296,7 @@ namespace PKHeX.WinForms
/// Opens a dialog to save a <see cref="MysteryGift"/> file.
/// </summary>
/// <param name="gift"><see cref="MysteryGift"/> to be saved.</param>
/// <param name="origin">Game the gift originates from</param>
/// <returns>Result of whether or not the file was saved.</returns>
public static bool SaveMGDialog(MysteryGift gift, GameVersion origin)
{