Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/class
diff options
context:
space:
mode:
authorPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>2004-09-02 00:01:24 +0400
committerPeter Dennis Bartok <pbartok@mono-cvs.ximian.com>2004-09-02 00:01:24 +0400
commit4df158787bb38c3a33c6a527d451f43c7bd815a2 (patch)
tree6ff3488c2ad4e226504e0635f07845379cdba541 /mcs/class
parent5e0747a8a13c05e72a8cd4db9c88e9a34954704e (diff)
- Added missing default
- Added missing region mark svn path=/trunk/mcs/; revision=33178
Diffstat (limited to 'mcs/class')
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/CheckBox.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/CheckBox.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/CheckBox.cs
index 7a753813f22..0aaf488aac2 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/CheckBox.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/CheckBox.cs
@@ -25,6 +25,10 @@
//
//
// $Log: CheckBox.cs,v $
+// Revision 1.6 2004/09/01 20:01:24 pbartok
+// - Added missing default
+// - Added missing region mark
+//
// Revision 1.5 2004/09/01 01:55:58 pbartok
// - Fixed to match the removal of the needs_redraw concept
//
@@ -49,6 +53,7 @@ using System.Drawing;
namespace System.Windows.Forms {
public class CheckBox : ButtonBase {
+ #region Local Variables
private Appearance appearance;
private bool auto_check;
private ContentAlignment check_alignment;
@@ -56,6 +61,7 @@ namespace System.Windows.Forms {
private CheckState check_state;
private bool three_state;
private int checkmark_size=13; // Keep it configurable for accessability
+ #endregion // Local Variables
#region Public Constructors
@@ -63,6 +69,7 @@ namespace System.Windows.Forms {
appearance = Appearance.Normal;
auto_check = true;
check_alignment = ContentAlignment.MiddleLeft;
+ text_alignment = ContentAlignment.MiddleLeft;
}
#endregion // Public Constructors