X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Applications.NotificationEventListener%2FTizen.Applications.NotificationEventListener%2FNotificationEventArgsBinder.cs;h=c70c0725525c4ab8c46af20f9bf6b7d1c8f4f123;hb=f2eae88f6e7a6883f35a795bf21ca4b6a07a493c;hp=d30292e82cfd61d6238a0495f942374fad3501d2;hpb=dd412dbb2fcba4ae37bcb13e25ba7b698a668c52;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsBinder.cs b/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsBinder.cs index d30292e..c70c072 100755 --- a/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsBinder.cs +++ b/src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsBinder.cs @@ -35,7 +35,7 @@ namespace Tizen.Applications.NotificationEventListener NotificationLayout layout; NotificationType type; string text; - IntPtr extention = IntPtr.Zero; + IntPtr extension = IntPtr.Zero; IntPtr dummy = IntPtr.Zero; SafeAppControlHandle appcontrol = null; @@ -158,15 +158,15 @@ namespace Tizen.Applications.NotificationEventListener eventargs.IsVisible = false; } - err = Interop.NotificationEventListener.GetExtentionBundle(eventargs.Handle, out extention, out dummy); + err = Interop.NotificationEventListener.GetExtensionBundle(eventargs.Handle, out extension, out dummy); if (err != Interop.NotificationEventListener.ErrorCode.None) { Log.Info(LogTag, "unable to get Extender"); } - if (extention != IntPtr.Zero) + if (extension != IntPtr.Zero) { - Bundle bundle = new Bundle(new SafeBundleHandle(extention, false)); + Bundle bundle = new Bundle(new SafeBundleHandle(extension, false)); foreach (string key in bundle.Keys) { if (key.StartsWith("_NOTIFICATION_EXTENSION_EVENT_"))