Skip to content

Commit

Permalink
Fix build error after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
myroot committed Aug 24, 2022
1 parent 46542b4 commit 25bc656
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ static readonly Microsoft.Maui.Controls.VisualElement.ZIndexProperty -> Microsof
~static Microsoft.Maui.Controls.FlyoutBase.GetContextFlyout(Microsoft.Maui.Controls.BindableObject b) -> Microsoft.Maui.Controls.FlyoutBase
~static Microsoft.Maui.Controls.FlyoutBase.SetContextFlyout(Microsoft.Maui.Controls.BindableObject b, Microsoft.Maui.Controls.FlyoutBase value) -> void
~static readonly Microsoft.Maui.Controls.FlyoutBase.ContextFlyoutProperty -> Microsoft.Maui.Controls.BindableProperty
static readonly Microsoft.Maui.Controls.VisualElement.ZIndexProperty -> Microsoft.Maui.Controls.BindableProperty!
~Microsoft.Maui.Controls.Handlers.Compatibility.CellWrapperTemplate.CellWrapperTemplate(Microsoft.Maui.Controls.DataTemplate source, Microsoft.Maui.Controls.BindableObject container = null) -> void
~Microsoft.Maui.Controls.Handlers.Compatibility.CellWrapperTemplateSelector.CellWrapperTemplateSelector(Microsoft.Maui.Controls.DataTemplateSelector selector) -> void
~Microsoft.Maui.Controls.Handlers.Compatibility.ListViewAdaptor.ListViewAdaptor(Microsoft.Maui.Controls.ListView listview, System.Collections.IEnumerable items, Microsoft.Maui.Controls.DataTemplate template) -> void
Expand Down
4 changes: 4 additions & 0 deletions src/Core/src/Platform/Tizen/ViewExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,10 @@ public static void UpdateSize(NView platformView, IView view)
platformView.UpdateSize(new Tizen.UIExtensions.Common.Size(view.Width, view.Height));
}

public static void UpdateToolTip(this NView platformView, ToolTip? tooltip)
{
}

internal static Rect GetPlatformViewBounds(this IView view)
{
var platformView = view?.ToPlatform();
Expand Down
12 changes: 1 addition & 11 deletions src/Core/src/PublicAPI/net-tizen/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,9 @@ static Microsoft.Maui.Handlers.MenuFlyoutHandler.MapRemove(Microsoft.Maui.Handle
static Microsoft.Maui.Handlers.MenuFlyoutSeparatorHandler.CommandMapper -> Microsoft.Maui.CommandMapper<Microsoft.Maui.IMenuFlyoutSeparator!, Microsoft.Maui.Handlers.IMenuFlyoutSeparatorHandler!>!
static Microsoft.Maui.Handlers.MenuFlyoutSeparatorHandler.Mapper -> Microsoft.Maui.IPropertyMapper<Microsoft.Maui.IMenuFlyoutSeparator!, Microsoft.Maui.Handlers.IMenuFlyoutSeparatorHandler!>!
static Microsoft.Maui.Handlers.ViewHandler.MapToolTip(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void
static Microsoft.Maui.Platform.ViewExtensions.UpdateToolTip(this ElmSharp.EvasObject! platformView, Microsoft.Maui.ToolTip? tooltip) -> void
static Microsoft.Maui.Platform.ViewExtensions.UpdateToolTip(this Tizen.NUI.BaseComponents.View! platformView, Microsoft.Maui.ToolTip? tooltip) -> void
static Microsoft.Maui.Handlers.ViewHandler.MapContextFlyout(Microsoft.Maui.IViewHandler! handler, Microsoft.Maui.IView! view) -> void
Microsoft.Maui.Platform.MauiPicker
Microsoft.Maui.Platform.MauiPicker.MauiPicker() -> void
override Microsoft.Maui.Platform.MauiPicker.OnEnabled(bool enabled) -> void
override Microsoft.Maui.Platform.MauiStepper.OnEnabled(bool enabled) -> void
Microsoft.Maui.Handlers.IMenuFlyoutSeparatorHandler
Microsoft.Maui.Handlers.IMenuFlyoutSeparatorHandler.PlatformView.get -> object!
Microsoft.Maui.Handlers.IMenuFlyoutSeparatorHandler.VirtualView.get -> Microsoft.Maui.IMenuFlyoutSeparator!
Microsoft.Maui.Handlers.MenuFlyoutSeparatorHandler
Microsoft.Maui.Handlers.MenuFlyoutSeparatorHandler.MenuFlyoutSeparatorHandler() -> void
Microsoft.Maui.Handlers.MenuFlyoutSeparatorHandler.MenuFlyoutSeparatorHandler(Microsoft.Maui.IPropertyMapper! mapper, Microsoft.Maui.CommandMapper? commandMapper = null) -> void
Microsoft.Maui.IMenuFlyoutSeparator
override Microsoft.Maui.Handlers.MenuFlyoutSeparatorHandler.CreatePlatformElement() -> object!
static Microsoft.Maui.Handlers.MenuFlyoutSeparatorHandler.CommandMapper -> Microsoft.Maui.CommandMapper<Microsoft.Maui.IMenuFlyoutSeparator!, Microsoft.Maui.Handlers.IMenuFlyoutSeparatorHandler!>!
static Microsoft.Maui.Handlers.MenuFlyoutSeparatorHandler.Mapper -> Microsoft.Maui.IPropertyMapper<Microsoft.Maui.IMenuFlyoutSeparator!, Microsoft.Maui.Handlers.IMenuFlyoutSeparatorHandler!>!

0 comments on commit 25bc656

Please sign in to comment.