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 a6f278b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 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
10 changes: 9 additions & 1 deletion src/Core/src/PublicAPI/net-tizen/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ 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
Microsoft.Maui.IToolTipElement
Microsoft.Maui.IToolTipElement.ToolTip.get -> Microsoft.Maui.ToolTip?
Microsoft.Maui.ToolTip
Microsoft.Maui.ToolTip.Content.get -> object?
Microsoft.Maui.ToolTip.Content.set -> void
Microsoft.Maui.ToolTip.ToolTip() -> void
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!>!
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 Tizen.NUI.BaseComponents.View! platformView, Microsoft.Maui.ToolTip? tooltip) -> void

0 comments on commit a6f278b

Please sign in to comment.