Rename Rect to Rectangle in preparation for removal

This commit is contained in:
Brandon Thetford
2024-02-20 17:12:58 -07:00
parent 13bd11d5d0
commit a638edeeaf
106 changed files with 1261 additions and 1259 deletions

View File

@@ -29,7 +29,7 @@ public class TreeViewTests
tree.BeginInit ();
tree.EndInit ();
tree.Bounds = new Rect (0, 0, 10, 10);
tree.Bounds = new Rectangle (0, 0, 10, 10);
InitFakeDriver ();
@@ -59,7 +59,7 @@ public class TreeViewTests
tree.EndInit ();
// control only allows 1 row to be viewed at once
tree.Bounds = new Rect (0, 0, 20, 1);
tree.Bounds = new Rectangle (0, 0, 20, 1);
InitFakeDriver ();
@@ -233,7 +233,7 @@ public class TreeViewTests
tree.EndInit ();
// Make tree bounds 1 in height so that EnsureVisible always requires updating scroll offset
tree.Bounds = new Rect (0, 0, 50, 1);
tree.Bounds = new Rectangle (0, 0, 50, 1);
Assert.Null (tree.SelectedObject);
Assert.Equal (0, tree.ScrollOffsetVertical);