From e56252e64f233a9781b53777ca89872fd6154cc5 Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Mon, 4 May 2015 12:38:38 +0200 Subject: [PATCH] Stylecop! --- Perspex.Controls/TextBox.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Perspex.Controls/TextBox.cs b/Perspex.Controls/TextBox.cs index ae1d313ba1..c008660292 100644 --- a/Perspex.Controls/TextBox.cs +++ b/Perspex.Controls/TextBox.cs @@ -112,8 +112,8 @@ namespace Perspex.Controls protected override void OnTemplateApplied() { this.presenter = this.GetTemplateChild("textPresenter"); - this.presenter.GotFocus += PresenterGotFocus; - this.presenter.LostFocus += PresenterLostFocus; + this.presenter.GotFocus += this.PresenterGotFocus; + this.presenter.LostFocus += this.PresenterLostFocus; } protected override void OnKeyDown(KeyEventArgs e)