Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 73d7d0c

Browse files
authored
[UICatalog] Fix ambiguous call in sample (#408)
a new API with a similar signature (wrt null) was added in XI 14
1 parent e020b63 commit 73d7d0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UICatalog/UICatalog/Controllers/Toolbars/CustomToolbarViewController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ private void ConfigureToolbar()
2929
var toolbarButtonItems = new[]
3030
{
3131
leftButton,
32-
new UIBarButtonItem(UIBarButtonSystemItem.FlexibleSpace, null),
32+
new UIBarButtonItem(UIBarButtonSystemItem.FlexibleSpace, (EventHandler) null),
3333
rightButton
3434
};
3535
toolbar.SetItems(toolbarButtonItems, true);

0 commit comments

Comments
 (0)