From: Wonyoung Choi Date: Tue, 12 Sep 2017 00:05:40 +0000 (+0900) Subject: [ElmSharp] Fix build warnings X-Git-Tag: preview1-00186~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F53%2F149153%2F2;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [ElmSharp] Fix build warnings Change-Id: I54445605ea6eeb7dd721e76df7fdcfd4b3942006 --- diff --git a/src/ElmSharp/ElmSharp/EvasKeyEventArgs.cs b/src/ElmSharp/ElmSharp/EvasKeyEventArgs.cs index 8955904df..378a7e99e 100644 --- a/src/ElmSharp/ElmSharp/EvasKeyEventArgs.cs +++ b/src/ElmSharp/ElmSharp/EvasKeyEventArgs.cs @@ -26,8 +26,6 @@ namespace ElmSharp { IntPtr _nativeEventInfo; - EvasEventFlag _eventFlags; - /// /// BackButton name in Platform /// diff --git a/src/ElmSharp/ElmSharp/GenGrid.cs b/src/ElmSharp/ElmSharp/GenGrid.cs old mode 100755 new mode 100644 index fc1f3fcee..961600839 --- a/src/ElmSharp/ElmSharp/GenGrid.cs +++ b/src/ElmSharp/ElmSharp/GenGrid.cs @@ -242,7 +242,7 @@ namespace ElmSharp } /// - /// Gets or sets the gengrid select mode by . + /// Gets or sets the gengrid select mode by . /// public GenItemSelectionMode SelectionMode { diff --git a/src/ElmSharp/ElmSharp/GenItem.cs b/src/ElmSharp/ElmSharp/GenItem.cs old mode 100755 new mode 100644 index 90b3325cc..ca50c53c1 --- a/src/ElmSharp/ElmSharp/GenItem.cs +++ b/src/ElmSharp/ElmSharp/GenItem.cs @@ -71,9 +71,6 @@ namespace ElmSharp /// public GenItemClass ItemClass { get; protected set; } - /// - /// It's a abstract property. It's implemented by and . - /// public GetTooltipContentDelegate TooltipContentDelegate { get @@ -87,6 +84,9 @@ namespace ElmSharp } } + /// + /// It's a abstract property. + /// public abstract GenItemSelectionMode SelectionMode { get; set; } public abstract string Cursor { get; set; } @@ -129,4 +129,4 @@ namespace ElmSharp protected abstract void UpdateTooltipDelegate(); } -} \ No newline at end of file +} diff --git a/src/ElmSharp/ElmSharp/SmartEvent.cs b/src/ElmSharp/ElmSharp/SmartEvent.cs old mode 100755 new mode 100644 index 6edbb7a97..f413f825d --- a/src/ElmSharp/ElmSharp/SmartEvent.cs +++ b/src/ElmSharp/ElmSharp/SmartEvent.cs @@ -161,7 +161,6 @@ namespace ElmSharp /// This way, you can extend EvasObject's own . /// They are defined by an event string, which identifies them uniquely. /// - /// The parameter for the event. public class SmartEvent : IInvalidatable { private SmartEvent _smartEvent; diff --git a/src/ElmSharp/ElmSharp/Toolbar.cs b/src/ElmSharp/ElmSharp/Toolbar.cs index 03705940e..644a43cef 100644 --- a/src/ElmSharp/ElmSharp/Toolbar.cs +++ b/src/ElmSharp/ElmSharp/Toolbar.cs @@ -394,7 +394,6 @@ namespace ElmSharp /// The label of the item /// A string with the icon name or the absolute path of an image file /// The new which insert into the toolbar - /// public ToolbarItem InsertAfter(ToolbarItem after, string label, string icon) { ToolbarItem item = new ToolbarItem(label, icon);