]> O.S.I.I.S - jp/crow.git/commitdiff
iml source handling, mouse hover in imlVE
authorjpbruyere <jp.bruyere@hotmail.com>
Mon, 15 Aug 2016 18:54:15 +0000 (20:54 +0200)
committerjpbruyere <jp.bruyere@hotmail.com>
Thu, 1 Sep 2016 11:24:16 +0000 (13:24 +0200)
src/GraphicObjects/GraphicObject.cs
src/IMLReader.cs

index b82a77cc60a73d77a8d0d8b4066d4e9039852fad..6572ba52b08cd63ca8ceaf40e52f67ff3cbe181d 100644 (file)
@@ -727,7 +727,7 @@ namespace Crow
                }
                /// <summary> query an update of the content, a redraw </summary>
                [MethodImpl(MethodImplOptions.AggressiveInlining)]
-               public virtual void RegisterForRedraw ()
+               public void RegisterForRedraw ()
                {
                        bmp = null;
                        if (RegisteredLayoutings == LayoutingType.None)
index 922a48d7d7b1bc485ca071d4b1f607855515ab57..7d87a66d6b48d6cb22ec55a12de922211ceab363 100644 (file)
@@ -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 ();
                }
                /// <summary>