Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[iOS] Fix some naming cells #7302

Merged
merged 1 commit into from May 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.Maui.Controls.Handlers.Items
{
public class CarouselTemplatedCell : TemplatedCell
{
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.Compatibility.Platform.iOS.CarouselTemplatedCell");
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.CarouselTemplatedCell");
CGSize _constraint;

[Export("initWithFrame:")]
Expand Down
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Handlers.Items
{
internal sealed class HorizontalCell : HeightConstrainedTemplatedCell
{
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.Compatibility.Platform.iOS.HorizontalCell");
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.HorizontalCell");

[Export("initWithFrame:")]
[Microsoft.Maui.Controls.Internals.Preserve(Conditional = true)]
Expand Down
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Handlers.Items
{
internal sealed class HorizontalDefaultCell : DefaultCell
{
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.Compatibility.Platform.iOS.HorizontalDefaultCell");
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.HorizontalDefaultCell");

[Export("initWithFrame:")]
[Microsoft.Maui.Controls.Internals.Preserve(Conditional = true)]
Expand Down
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Handlers.Items
{
internal sealed class HorizontalDefaultSupplementalView : DefaultCell
{
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.Compatibility.Platform.iOS.HorizontalDefaultSupplementalView");
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.HorizontalDefaultSupplementalView");

[Export("initWithFrame:")]
[Microsoft.Maui.Controls.Internals.Preserve(Conditional = true)]
Expand Down
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Handlers.Items
{
internal sealed class HorizontalSupplementaryView : HeightConstrainedTemplatedCell
{
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.Compatibility.Platform.iOS.HorizontalSupplementaryView");
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.HorizontalSupplementaryView");

[Export("initWithFrame:")]
[Microsoft.Maui.Controls.Internals.Preserve(Conditional = true)]
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/src/Core/Handlers/Items/iOS/VerticalCell.cs
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Handlers.Items
{
internal sealed class VerticalCell : WidthConstrainedTemplatedCell
{
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.Compatibility.Platform.iOS.VerticalCell");
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.VerticalCell");

[Export("initWithFrame:")]
[Microsoft.Maui.Controls.Internals.Preserve(Conditional = true)]
Expand Down
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Handlers.Items
{
internal sealed class VerticalDefaultCell : DefaultCell
{
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.Compatibility.Platform.iOS.VerticalDefaultCell");
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.VerticalDefaultCell");

[Export("initWithFrame:")]
[Microsoft.Maui.Controls.Internals.Preserve(Conditional = true)]
Expand Down
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Handlers.Items
{
internal sealed class VerticalDefaultSupplementalView : DefaultCell
{
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.Compatibility.Platform.iOS.VerticalDefaultSupplementalView");
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.VerticalDefaultSupplementalView");

[Export("initWithFrame:")]
[Microsoft.Maui.Controls.Internals.Preserve(Conditional = true)]
Expand Down
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Maui.Controls.Handlers.Items
{
internal sealed class VerticalSupplementaryView : WidthConstrainedTemplatedCell
{
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.Compatibility.Platform.iOS.VerticalSupplementaryView");
public static NSString ReuseId = new NSString("Microsoft.Maui.Controls.VerticalSupplementaryView");

[Export("initWithFrame:")]
[Microsoft.Maui.Controls.Internals.Preserve(Conditional = true)]
Expand Down