ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Docking/FloatingMemoryView.cs
(Generate patch)

Comparing trunk/RomCheater/Docking/FloatingMemoryView.cs (file contents):
Revision 200 by william, Thu May 31 07:13:43 2012 UTC vs.
Revision 201 by william, Thu May 31 08:10:25 2012 UTC

--- trunk/RomCheater/Docking/FloatingMemoryView.cs	2012/05/31 07:29:44	200
+++ trunk/RomCheater/Docking/FloatingMemoryView.cs	2012/05/31 08:10:25	201
@@ -19,8 +19,8 @@ namespace RomCheater.Docking
             InitializeComponent(); 
             this.AcceptedPlugin = null;
             this.AcceptedProcess = null;
-            this.MemoryStart = uint.MinValue;
-            this.MemorySize = uint.MaxValue;
+            //this.MemoryStart = uint.MinValue;
+            //this.MemorySize = uint.MaxValue;
         }
         public FloatingMemoryView(IConfigPlugin config) : this() { this.AcceptedPlugin = config; }
         public FloatingMemoryView(IConfigPlugin config, Process process) : this() { this.AcceptedPlugin = config; this.AcceptedProcess = process; }
@@ -30,9 +30,9 @@ namespace RomCheater.Docking
         #region IAcceptsPlugin<IConfigPlugin> Members
         public IConfigPlugin AcceptedPlugin { get { return MemView.AcceptedPlugin; } set { MemView.AcceptedPlugin = value; } }
         #endregion
-        #region IAcceptsMemoryRange members
-        private uint MemoryStart { get { return MemView.MemoryStart; } set { MemView.MemoryStart = value; } }
-        private uint MemorySize { get { return MemView.MemorySize; } set { MemView.MemorySize = value; } }
-        #endregion
+        //#region IAcceptsMemoryRange members
+        //private uint MemoryStart { get { return MemView.MemoryStart; } set { MemView.MemoryStart = value; } }
+        //private uint MemorySize { get { return MemView.MemorySize; } set { MemView.MemorySize = value; } }
+        //#endregion
     }
 }