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

Comparing trunk/RomCheater.EmuMMAPPlugin/EmuMEMMapDockControl.cs (file contents):
Revision 682 by william, Sun Jun 9 00:40:20 2013 UTC vs.
Revision 683 by william, Mon Jun 17 08:33:06 2013 UTC

--- trunk/RomCheater.EmuMMAPPlugin/EmuMEMMapDockControl.cs	2013/06/17 08:27:34	682
+++ trunk/RomCheater.EmuMMAPPlugin/EmuMEMMapDockControl.cs	2013/06/17 08:33:06	683
@@ -7,15 +7,18 @@ using System.Linq;
 using System.Text;
 using System.Windows.Forms;
 using WeifenLuo.WinFormsUI.Docking;
+using RomCheater.PluginFramework.Core;
 
 namespace RomCheater.EmuMMAPPlugin
 {
     #region EmuMEMMapDockControl
     public partial class EmuMEMMapDockControl : DockContent
     {
+        private UserControlPlugin plugin;
         private List<DeviceMemoryMap> DeviceMemoryMaps = new List<DeviceMemoryMap>();
-        public EmuMEMMapDockControl()
+        public EmuMEMMapDockControl(UserControlPlugin plugin)
         {
+            this.plugin = plugin;
             InitializeComponent();
             CreateMaps();
         }