ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/libWin32/Win32/UI/FloatBox.cs
(Generate patch)

Comparing trunk/Win32/libWin32/Win32/UI/FloatBox.cs (file contents):
Revision 88 by william, Wed May 9 20:52:20 2012 UTC vs.
Revision 220 by william, Sat Jun 2 11:55:57 2012 UTC

--- trunk/Win32/libWin32/Win32/UI/FloatBox.cs	2012/05/09 20:52:20	88
+++ trunk/Win32/libWin32/Win32/UI/FloatBox.cs	2012/06/02 11:55:57	220
@@ -9,7 +9,7 @@ using System.Windows.Forms;
 
 namespace System.Windows.Forms
 {
-    public partial class FloatBox : NumericBox
+    public partial class FloatBox : NumericBoxBase
     {
         public FloatBox()
         {
@@ -23,18 +23,10 @@ namespace System.Windows.Forms
             get { return this.ToSingle(); }
             set { base.Value = value; }
         }
-
-
         public override string Text
         {
             get { return base.Text; }
             set { base.Text = value; }
         }
-
-        public override bool ReadOnly
-        {
-            get { return base.ReadOnly; }
-            set { base.ReadOnly = value; }
-        }
     }
 }