svn path=/trunk/mcs/; revision=94612
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / RichTextBox.cs
index a6cdbc03e4fad5f7e8c1f17a685d61672b39d7f9..5dbb0c7d8371074494c8412fd2e4689a6f23d637 100644 (file)
@@ -173,15 +173,11 @@ namespace System.Windows.Forms {
                        }
                }
 
+               [MonoTODO ("Value not respected, always true")]
                [DefaultValue(false)]
                public bool AutoWordSelection {
-                       get {
-                               return auto_word_select;
-                       }
-
-                       set {
-                               auto_word_select = true;
-                       }
+                       get { return auto_word_select; }
+                       set { auto_word_select = value; }
                }
 
                [Browsable(false)]
@@ -1363,6 +1359,7 @@ namespace System.Windows.Forms {
                        remove { base.QueryContinueDrag -= value; }
                }
 
+               [MonoTODO("Currently does not ever fire")]
                public event EventHandler SelectionChanged {
                        add { Events.AddHandler (SelectionChangedEvent, value); }
                        remove { Events.RemoveHandler (SelectionChangedEvent, value); }