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

Comparing trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs (file contents):
Revision 322 by william, Tue Jun 5 08:52:07 2012 UTC vs.
Revision 323 by william, Thu Jun 7 16:33:41 2012 UTC

--- trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs	2012/06/05 23:20:12	322
+++ trunk/RomCheater.PluginFramework/Events/IAcceptsMemoryAddress.cs	2012/06/07 16:33:41	323
@@ -22,9 +22,9 @@ namespace RomCheater.PluginFramework.Eve
     public class BrowseMemoryRegionEvent : BaseEventArgs, IBrowseMemoryRegionEvent
     {
         public BrowseMemoryRegionEvent() : this(0) { }
-        public BrowseMemoryRegionEvent(object sender) : this(0, sender) { }
+        public BrowseMemoryRegionEvent(object sender) : this(sender, 0) { }
         public BrowseMemoryRegionEvent(int memoryRegion) : base() { this.MemoryRegion = memoryRegion; }
-        public BrowseMemoryRegionEvent(int memoryRegion, object sender) : base(sender) { this.MemoryRegion = memoryRegion; }
+        public BrowseMemoryRegionEvent(object sender, int memoryRegion) : base(sender) { this.MemoryRegion = memoryRegion; }
         #region IBrowseMemoryRegionEvent members
         public int MemoryRegion { get; private set; }
         #endregion