Fix left/right icon issue in ListItem
authorSungHyun Min <shyun.min@samsung.com>
Wed, 10 May 2017 10:21:10 +0000 (19:21 +0900)
committerSungHyun Min <shyun.min@samsung.com>
Wed, 10 May 2017 10:23:17 +0000 (19:23 +0900)
 - TASK=TCAPI-2325

Change-Id: I3daa4285445f8d755836628d57a873df8592d114

src/ElmSharp/ElmSharp/ListItem.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index fbdd3e4..09354b1
@@ -28,8 +28,8 @@ namespace ElmSharp
         internal ListItem(string text, EvasObject leftIcon, EvasObject rightIcon) : base(IntPtr.Zero)
         {
             Text = text;
-            LeftIcon = LeftIcon;
-            RightIcon = RightIcon;
+            LeftIcon = leftIcon;
+            RightIcon = rightIcon;
         }
 
         /// <summary>
@@ -47,4 +47,4 @@ namespace ElmSharp
         /// </summary>
         public EvasObject RightIcon { get; internal set; }
     }
-}
+}
\ No newline at end of file