From e12b662be66c55371eba23e4bf171eefa4be4f75 Mon Sep 17 00:00:00 2001 From: Hans-Albert Maritz Date: Tue, 31 Mar 2015 05:37:43 +1100 Subject: [PATCH] Make handleAction not protected --- src/dlangui/widgets/editors.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dlangui/widgets/editors.d b/src/dlangui/widgets/editors.d index 6027a36c..a783400e 100644 --- a/src/dlangui/widgets/editors.d +++ b/src/dlangui/widgets/editors.d @@ -1564,7 +1564,7 @@ class EditLine : EditWidgetBase { measuredContent(parentWidth, parentHeight, _measuredTextSize.x + _leftPaneWidth, _measuredTextSize.y); } - override protected bool handleAction(const Action a) { + override bool handleAction(const Action a) { switch (a.id) { case EditorActions.InsertNewLine: case EditorActions.PrependNewLine: