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

Commit

Permalink
[UICatalog] Fix ambiguous call in sample (#408)
Browse files Browse the repository at this point in the history
a new API with a similar signature (wrt null) was added in XI 14
  • Loading branch information
spouliot authored Oct 30, 2020
1 parent e020b63 commit 73d7d0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private void ConfigureToolbar()
var toolbarButtonItems = new[]
{
leftButton,
new UIBarButtonItem(UIBarButtonSystemItem.FlexibleSpace, null),
new UIBarButtonItem(UIBarButtonSystemItem.FlexibleSpace, (EventHandler) null),
rightButton
};
toolbar.SetItems(toolbarButtonItems, true);
Expand Down

0 comments on commit 73d7d0c

Please sign in to comment.