Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarinho committed Feb 16, 2022
1 parent 2166b08 commit d3f08ea
Show file tree
Hide file tree
Showing 18 changed files with 39 additions and 39 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ public partial class LineHandler
{
public static void MapX1(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}

public static void MapY1(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}

public static void MapX2(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}

public static void MapY2(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ public partial class LineHandler
{
public static void MapX1(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}

public static void MapY1(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}

public static void MapX2(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}

public static void MapY2(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}
}
}
8 changes: 4 additions & 4 deletions src/Controls/src/Core/Handlers/Shapes/Line/LineHandler.iOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ public partial class LineHandler
{
public static void MapX1(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}

public static void MapY1(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}

public static void MapX2(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}

public static void MapY2(LineHandler handler, Line line)
{
handler.NativeView?.InvalidateShape(line);
handler.PlatformView?.InvalidateShape(line);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ public partial class PathHandler
{
public static void MapData(PathHandler handler, Path path)
{
handler.NativeView?.InvalidateShape(path);
handler.PlatformView?.InvalidateShape(path);
}

public static void MapRenderTransform(PathHandler handler, Path path)
{
handler.NativeView?.InvalidateShape(path);
handler.PlatformView?.InvalidateShape(path);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ public partial class PathHandler
{
public static void MapData(PathHandler handler, Path path)
{
handler.NativeView?.InvalidateShape(path);
handler.PlatformView?.InvalidateShape(path);
}

public static void MapRenderTransform(PathHandler handler, Path path)
{
handler.NativeView?.InvalidateShape(path);
handler.PlatformView?.InvalidateShape(path);
}
}
}
4 changes: 2 additions & 2 deletions src/Controls/src/Core/Handlers/Shapes/Path/PathHandler.iOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ public partial class PathHandler
{
public static void MapData(PathHandler handler, Path path)
{
handler.NativeView?.InvalidateShape(path);
handler.PlatformView?.InvalidateShape(path);
}

public static void MapRenderTransform(PathHandler handler, Path path)
{
handler.NativeView?.InvalidateShape(path);
handler.PlatformView?.InvalidateShape(path);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ protected override void DisconnectHandler(MauiShapeView nativeView)

public static void MapPoints(PolygonHandler handler, Polygon polygon)
{
handler.NativeView?.InvalidateShape(polygon);
handler.PlatformView?.InvalidateShape(polygon);
}

void OnPointsCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
NativeView?.InvalidateShape(VirtualView);
PlatformView?.InvalidateShape(VirtualView);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ protected override void DisconnectHandler(W2DGraphicsView nativeView)

public static void MapPoints(PolygonHandler handler, Polygon polygon)
{
handler.NativeView?.InvalidateShape(polygon);
handler.PlatformView?.InvalidateShape(polygon);
}

void OnPointsCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
NativeView?.InvalidateShape(VirtualView);
PlatformView?.InvalidateShape(VirtualView);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ protected override void DisconnectHandler(MauiShapeView nativeView)

public static void MapPoints(PolygonHandler handler, Polygon polygon)
{
handler.NativeView?.InvalidateShape(polygon);
handler.PlatformView?.InvalidateShape(polygon);
}

void OnPointsCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
NativeView?.InvalidateShape(VirtualView);
PlatformView?.InvalidateShape(VirtualView);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ protected override void DisconnectHandler(MauiShapeView nativeView)

public static void MapPoints(PolylineHandler handler, Polyline polyline)
{
handler.NativeView?.InvalidateShape(polyline);
handler.PlatformView?.InvalidateShape(polyline);
}

void OnPointsCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
NativeView?.InvalidateShape(VirtualView);
PlatformView?.InvalidateShape(VirtualView);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ protected override void DisconnectHandler(W2DGraphicsView nativeView)

public static void MapPoints(PolylineHandler handler, Polyline polyline)
{
handler.NativeView?.InvalidateShape(polyline);
handler.PlatformView?.InvalidateShape(polyline);
}

void OnPointsCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
NativeView?.InvalidateShape(VirtualView);
PlatformView?.InvalidateShape(VirtualView);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ protected override void DisconnectHandler(MauiShapeView nativeView)

public static void MapPoints(PolylineHandler handler, Polyline polyline)
{
handler.NativeView?.InvalidateShape(polyline);
handler.PlatformView?.InvalidateShape(polyline);
}

void OnPointsCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
NativeView?.InvalidateShape(VirtualView);
PlatformView?.InvalidateShape(VirtualView);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ public partial class RectangleHandler
{
public static void MapRadiusX(RectangleHandler handler, Rectangle rectangle)
{
handler.NativeView?.InvalidateShape(rectangle);
handler.PlatformView?.InvalidateShape(rectangle);
}

public static void MapRadiusY(RectangleHandler handler, Rectangle rectangle)
{
handler.NativeView?.InvalidateShape(rectangle);
handler.PlatformView?.InvalidateShape(rectangle);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ public partial class RectangleHandler
{
public static void MapRadiusX(RectangleHandler handler, Rectangle rectangle)
{
handler.NativeView?.InvalidateShape(rectangle);
handler.PlatformView?.InvalidateShape(rectangle);
}

public static void MapRadiusY(RectangleHandler handler, Rectangle rectangle)
{
handler.NativeView?.InvalidateShape(rectangle);
handler.PlatformView?.InvalidateShape(rectangle);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ public partial class RectangleHandler
{
public static void MapRadiusX(RectangleHandler handler, Rectangle rectangle)
{
handler.NativeView?.InvalidateShape(rectangle);
handler.PlatformView?.InvalidateShape(rectangle);
}

public static void MapRadiusY(RectangleHandler handler, Rectangle rectangle)
{
handler.NativeView?.InvalidateShape(rectangle);
handler.PlatformView?.InvalidateShape(rectangle);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public partial class RoundRectangleHandler
{
public static void MapCornerRadius(RoundRectangleHandler handler, RoundRectangle roundRectangle)
{
handler.NativeView?.InvalidateShape(roundRectangle);
handler.PlatformView?.InvalidateShape(roundRectangle);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public partial class RoundRectangleHandler
{
public static void MapCornerRadius(RoundRectangleHandler handler, RoundRectangle roundRectangle)
{
handler.NativeView?.InvalidateShape(roundRectangle);
handler.PlatformView?.InvalidateShape(roundRectangle);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public partial class RoundRectangleHandler
{
public static void MapCornerRadius(RoundRectangleHandler handler, RoundRectangle roundRectangle)
{
handler.NativeView?.InvalidateShape(roundRectangle);
handler.PlatformView?.InvalidateShape(roundRectangle);
}
}
}

0 comments on commit d3f08ea

Please sign in to comment.