Fixed some recent compiler warnings (#1734)

This commit is contained in:
Ivan Stošić
2020-03-27 16:01:24 +01:00
committed by GitHub
parent 958198b65a
commit a6793588c6
2 changed files with 2 additions and 2 deletions

View File

@@ -152,7 +152,7 @@ namespace FancyZonesEditor
protected override void OnMouseLeave(MouseEventArgs e) protected override void OnMouseLeave(MouseEventArgs e)
{ {
_splitter.Fill = Brushes.Transparent; _splitter.Fill = Brushes.Transparent;
base.OnMouseLeave(e); base.OnMouseLeave(e);
} }

View File

@@ -337,7 +337,7 @@ namespace FancyZonesEditor
_gridModel.CellChildMap[row, col] = index--; _gridModel.CellChildMap[row, col] = index--;
if (index < 0) if (index < 0)
{ {
index = 0; ; index = 0;
} }
} }
} }