@@ -1,3 +1,6 @@
+2005-10-17 Rafael Teixeira <[email protected]>
+ * TreeNode.cs : small logical fix (was using local var instead of field)
+
2005-10-17 Jordi Mas i Hernandez <[email protected]>
* ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
@@ -146,7 +146,7 @@ namespace System.Windows.Forms {
check = value;
if (TreeView != null)
- tree_view.UpdateNode (this);
+ TreeView.UpdateNode (this);
}