Fix order of parameters

This commit is contained in:
maciekwin3
2023-08-30 19:59:14 +02:00
parent e5e55e65e9
commit cc88e33ffe

View File

@@ -39,7 +39,7 @@ namespace Terminal.Gui {
private void Initialize (ComboBox container, bool hideDropdownListOnClick)
{
this.container = container ?? throw new ArgumentNullException ("ComboBox container cannot be null.", nameof (container));
this.container = container ?? throw new ArgumentNullException (nameof(container), "ComboBox container cannot be null.");
HideDropdownListOnClick = hideDropdownListOnClick;
}