Fix typo in NotificationEventListener
authorMyungki Lee <mk5004.lee@samsung.com>
Wed, 17 May 2017 04:34:12 +0000 (13:34 +0900)
committerMyungki Lee <mk5004.lee@samsung.com>
Wed, 17 May 2017 04:34:12 +0000 (13:34 +0900)
- SountPath -> soundpath

Change-Id: I76dcf968c51e75d8acad40099fc67bc8d8c36a59
Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationAccessoryArgsBinder.cs
src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs

index a46c90f..30dd573 100755 (executable)
@@ -46,7 +46,7 @@ namespace Tizen.Applications.NotificationEventListener
             accessory.SoundOption = type;
             if (type == AccessoryOption.Custom)
             {
-                accessory.SountPath = path;
+                accessory.SoundPath = path;
             }
 
             Interop.NotificationEventListener.GetVibration(eventargs.Handle, out type, out path);
@@ -62,4 +62,4 @@ namespace Tizen.Applications.NotificationEventListener
             eventargs.Accessory = accessory;
         }
     }
-}
\ No newline at end of file
+}
index e7b536f..b09398c 100755 (executable)
@@ -36,7 +36,7 @@ namespace Tizen.Applications.NotificationEventListener
             /// <summary>
             /// Gets the sound path.
             /// </summary>
-            public string SountPath { get; internal set; }
+            public string SoundPath { get; internal set; }
 
             /// <summary>
             /// Gets the vibration option.
@@ -72,4 +72,4 @@ namespace Tizen.Applications.NotificationEventListener
             public Color LedColor { get; internal set; }
         }
     }
-}
\ No newline at end of file
+}