summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMyungki Lee <mk5004.lee@samsung.com>2017-05-17 13:34:12 +0900
committerMyungki Lee <mk5004.lee@samsung.com>2017-05-17 13:34:12 +0900
commitcb01b8464254839da55cd7fd134258d8d25084b0 (patch)
treea4aa908a775a145d94447aa9dd9c9cb8cace97ad
parenta92750f62453276244d65004be0a6d757334759c (diff)
downloadapplication-cb01b8464254839da55cd7fd134258d8d25084b0.tar.gz
application-cb01b8464254839da55cd7fd134258d8d25084b0.tar.bz2
application-cb01b8464254839da55cd7fd134258d8d25084b0.zip
Fix typo in NotificationEventListener
- SountPath -> soundpath Change-Id: I76dcf968c51e75d8acad40099fc67bc8d8c36a59 Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationAccessoryArgsBinder.cs4
-rwxr-xr-xTizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs4
2 files changed, 4 insertions, 4 deletions
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationAccessoryArgsBinder.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationAccessoryArgsBinder.cs
index a46c90f..30dd573 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationAccessoryArgsBinder.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationAccessoryArgsBinder.cs
@@ -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
+}
diff --git a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs
index e7b536f..b09398c 100755
--- a/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs
+++ b/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsAccessory.cs
@@ -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
+}