From 4c0a92727f92bb64debd89c1276afe9a94cc4446 Mon Sep 17 00:00:00 2001 From: Ondrej Petrzilka Date: Thu, 13 Oct 2016 10:01:35 +0200 Subject: [PATCH] Used tabs instead of spaces --- ILSpy/SearchPane.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ILSpy/SearchPane.cs b/ILSpy/SearchPane.cs index 4fb1900e1..787652db1 100644 --- a/ILSpy/SearchPane.cs +++ b/ILSpy/SearchPane.cs @@ -104,7 +104,7 @@ namespace ICSharpCode.ILSpy public static readonly DependencyProperty SearchTermProperty = DependencyProperty.Register("SearchTerm", typeof(string), typeof(SearchPane), - new FrameworkPropertyMetadata(string.Empty, OnSearchTermChanged)); + new FrameworkPropertyMetadata(string.Empty, OnSearchTermChanged)); public string SearchTerm { get { return (string)GetValue(SearchTermProperty); } @@ -266,11 +266,11 @@ namespace ICSharpCode.ILSpy } } this.Results.Insert(this.Results.Count - 1, result); - } - else - { - // Original code - this.Results.Insert(this.Results.Count - 1, result); + } + else + { + // Original code + this.Results.Insert(this.Results.Count - 1, result); } }