From fd345ce484b8ba4bcf4d6ab778b85a6c0d129e39 Mon Sep 17 00:00:00 2001 From: Clinton Rocksmith Date: Tue, 4 Jun 2019 15:26:57 +1000 Subject: [PATCH] Added Virtual Keyword --- src/ReactiveUI.AndroidSupport/ReactiveRecyclerViewAdapter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReactiveUI.AndroidSupport/ReactiveRecyclerViewAdapter.cs b/src/ReactiveUI.AndroidSupport/ReactiveRecyclerViewAdapter.cs index 7ba639d8cf..f3f237d272 100644 --- a/src/ReactiveUI.AndroidSupport/ReactiveRecyclerViewAdapter.cs +++ b/src/ReactiveUI.AndroidSupport/ReactiveRecyclerViewAdapter.cs @@ -65,7 +65,7 @@ public override int GetItemViewType(int position) /// The position of the current view in the list. /// The ViewModel associated with the current View. /// An ID to be used in OnCreateViewHolder. - public int GetItemViewType(int position, TViewModel viewModel) + public virtual int GetItemViewType(int position, TViewModel viewModel) { return base.GetItemViewType(position); }