Fix wrong function parameter 77/145477/2
authorSeungha Son <seungha.son@samsung.com>
Tue, 22 Aug 2017 11:02:22 +0000 (20:02 +0900)
committerSemun Lee <semun.lee@samsung.com>
Wed, 23 Aug 2017 01:45:49 +0000 (01:45 +0000)
Change-Id: Ic1a99d57dea01846b94754f7a2cb8abf6c4a28fb
Signed-off-by: Seungha Son <seungha.son@samsung.com>
src/Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationStyleBinder.cs

index a9bcc59..f84c6f7 100755 (executable)
@@ -125,12 +125,12 @@ namespace Tizen.Applications.Notifications
 
             if (style.HiddenByTimeoutAction != null)
             {
-                Interop.Notification.SetExtensionAction(notification.Handle, NotificationEventType.HiddenByTimeout, style.HiddenByUserAction.SafeAppControlHandle);
+                Interop.Notification.SetExtensionAction(notification.Handle, NotificationEventType.HiddenByTimeout, style.HiddenByTimeoutAction.SafeAppControlHandle);
             }
 
             if (style.HiddenByExternalAction != null)
             {
-                Interop.Notification.SetExtensionAction(notification.Handle, NotificationEventType.HiddenByExternal, style.HiddenByUserAction.SafeAppControlHandle);
+                Interop.Notification.SetExtensionAction(notification.Handle, NotificationEventType.HiddenByExternal, style.HiddenByExternalAction.SafeAppControlHandle);
             }
         }