Skip to content

Commit

Permalink
build: fix missing interface members
Browse files Browse the repository at this point in the history
  • Loading branch information
Samir Boulema committed Dec 15, 2021
1 parent fa392b0 commit 789d5e9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CodeNav.Shared/CodeViewUserControlTop.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.Windows.Controls;
using System.Windows.Media;
using CodeNav.Helpers;
Expand All @@ -15,6 +16,10 @@ public partial class CodeViewUserControlTop : ICodeViewUserControl
{
private readonly RowDefinition _row;

public IDisposable CaretPositionChangedSubscription { get; set; }
public IDisposable TextContentChangedSubscription { get; set; }
public IDisposable UpdateWhileTypingSubscription { get; set; }

public CodeDocumentViewModel CodeDocumentViewModel { get; set; }

public CodeViewUserControlTop(RowDefinition row = null)
Expand Down

0 comments on commit 789d5e9

Please sign in to comment.