Added missing colon

This commit is contained in:
2023-03-28 12:57:45 +02:00
parent a806f73633
commit c71e0f8947

View File

@@ -15,7 +15,7 @@ namespace Password_Manager
}
public static MainForm mainForm = new MainForm(
() => ConfigFileManager.GetPath()
() => ConfigFileManager.GetPath(),
() => ConfigFileManager.GetRecipient()
); //needed at creation so that MainForm may pass this method down to other classes in its constructor
}