[ElmSharp] Fix build warnings 53/149153/2
authorWonyoung Choi <wy80.choi@samsung.com>
Tue, 12 Sep 2017 00:05:40 +0000 (09:05 +0900)
committerSeungkeun Lee <sngn.lee@samsung.com>
Tue, 12 Sep 2017 00:52:19 +0000 (09:52 +0900)
Change-Id: I54445605ea6eeb7dd721e76df7fdcfd4b3942006

src/ElmSharp/ElmSharp/EvasKeyEventArgs.cs
src/ElmSharp/ElmSharp/GenGrid.cs [changed mode: 0755->0644]
src/ElmSharp/ElmSharp/GenItem.cs [changed mode: 0755->0644]
src/ElmSharp/ElmSharp/SmartEvent.cs [changed mode: 0755->0644]
src/ElmSharp/ElmSharp/Toolbar.cs

index 8955904..378a7e9 100644 (file)
@@ -26,8 +26,6 @@ namespace ElmSharp
     {
         IntPtr _nativeEventInfo;
 
-        EvasEventFlag _eventFlags;
-
         /// <summary>
         /// BackButton name in Platform
         /// </summary>
old mode 100755 (executable)
new mode 100644 (file)
index fc1f3fc..9616008
@@ -242,7 +242,7 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Gets or sets the gengrid select mode by <see cref="GenGridSelectionMode"/>.
+        /// Gets or sets the gengrid select mode by <see cref="GenItemSelectionMode"/>.
         /// </summary>
         public GenItemSelectionMode SelectionMode
         {
old mode 100755 (executable)
new mode 100644 (file)
index 90b3325..ca50c53
@@ -71,9 +71,6 @@ namespace ElmSharp
         /// </summary>
         public GenItemClass ItemClass { get; protected set; }
 
-        /// <summary>
-        /// It's a abstract property. It's implemented by <see cref="GenGridItem.TooltipContent"/> and <see cref="GenListItem.TooltipContent"/>.
-        /// </summary>
         public GetTooltipContentDelegate TooltipContentDelegate
         {
             get
@@ -87,6 +84,9 @@ namespace ElmSharp
             }
         }
 
+        /// <summary>
+        /// It's a abstract property.
+        /// </summary>
         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
+}
old mode 100755 (executable)
new mode 100644 (file)
index 6edbb7a..f413f82
@@ -161,7 +161,6 @@ namespace ElmSharp
     /// This way, you can extend EvasObject's own <see cref="EvasObjectEvent"/>.
     /// They are defined by an event string, which identifies them uniquely.
     /// </summary>
-    /// <typeparam name="TEventArgs">The parameter for the event.</typeparam>
     public class SmartEvent : IInvalidatable
     {
         private SmartEvent<EventArgs> _smartEvent;
index 0370594..644a43c 100644 (file)
@@ -394,7 +394,6 @@ namespace ElmSharp
         /// <param name="label">The label of the item</param>
         /// <param name="icon">A string with the icon name or the absolute path of an image file</param>
         /// <returns>The new <see cref="ToolbarItem"/> which insert into the toolbar</returns>
-        /// <seealso cref="InsertAfter(ToolbarItem, string)"/>
         public ToolbarItem InsertAfter(ToolbarItem after, string label, string icon)
         {
             ToolbarItem item = new ToolbarItem(label, icon);