From: jpbruyere Date: Mon, 15 Aug 2016 18:54:15 +0000 (+0200) Subject: iml source handling, mouse hover in imlVE X-Git-Tag: v0.9.5-beta~259^2~39 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=5f3e95da37cf438391e3f50f3df6c99a8ebb83a2;p=jp%2Fcrow.git iml source handling, mouse hover in imlVE --- 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 (); } ///