From 5f3e95da37cf438391e3f50f3df6c99a8ebb83a2 Mon Sep 17 00:00:00 2001 From: jpbruyere Date: Mon, 15 Aug 2016 20:54:15 +0200 Subject: [PATCH] iml source handling, mouse hover in imlVE --- src/GraphicObjects/GraphicObject.cs | 2 +- src/IMLReader.cs | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/GraphicObjects/GraphicObject.cs b/src/GraphicObjects/GraphicObject.cs index b82a77cc..6572ba52 100644 --- a/src/GraphicObjects/GraphicObject.cs +++ b/src/GraphicObjects/GraphicObject.cs @@ -727,7 +727,7 @@ namespace Crow } /// query an update of the content, a redraw [MethodImpl(MethodImplOptions.AggressiveInlining)] - public virtual void RegisterForRedraw () + public void RegisterForRedraw () { bmp = null; if (RegisteredLayoutings == LayoutingType.None) diff --git a/src/IMLReader.cs b/src/IMLReader.cs index 922a48d7..7d87a66d 100644 --- a/src/IMLReader.cs +++ b/src/IMLReader.cs @@ -31,10 +31,6 @@ namespace Crow public class IMLReader : XmlTextReader { InstanciatorInvoker loader = null; - - string ImlPath; - Stream ImlStream; - DynamicMethod dm = null; public ILGenerator il = null; @@ -55,12 +51,10 @@ namespace Crow #region CTOR public IMLReader (string path) : this(Interface.GetStreamFromPath (path)){ - ImlPath = path; } public IMLReader (Stream stream) : base(stream) { - ImlStream = stream; createInstantiator (); } /// -- 2.47.3