Fix wrong spelling
authorSeungha Son <seungha.son@samsung.com>
Tue, 23 May 2017 04:42:55 +0000 (13:42 +0900)
committerSeungha Son <seungha.son@samsung.com>
Tue, 23 May 2017 04:44:50 +0000 (13:44 +0900)
Signed-off-by: Seungha Son <seungha.son@samsung.com>
Change-Id: Ie5964fc7761f45dd0ed771825e2a4b672911d4e0

src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsBinder.cs
src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationEventArgsEnumerations.cs
src/Tizen.Applications.NotificationEventListener/Tizen.Applications.NotificationEventListener/NotificationStyleArgsBinder.cs

index a466906..3afaf2f 100755 (executable)
@@ -153,7 +153,7 @@ namespace Tizen.Applications.NotificationEventListener
             }
 
             Interop.NotificationEventListener.GetStyleList(eventargs.Handle, out displayList);
-            if ((displayList & (int)NotificatioDisplayApplist.Tray) == 0)
+            if ((displayList & (int)NotificationDisplayApplist.Tray) == 0)
             {
                 eventargs.IsDisplay = false;
             }
index 3bd4bb3..348a016 100755 (executable)
@@ -453,7 +453,7 @@ namespace Tizen.Applications.NotificationEventListener
     /// Enumeration for display application list.
     /// </summary>
     [Flags]
-    internal enum NotificatioDisplayApplist
+    internal enum NotificationDisplayApplist
     {
         /// <summary>
         /// Notification Tray(Quickpanel)
index d897dcf..930c946 100755 (executable)
@@ -27,7 +27,7 @@ namespace Tizen.Applications.NotificationEventListener
 
             Interop.NotificationEventListener.GetStyleList(eventargs.Handle, out styleList);
 
-            if ((styleList & (int)NotificatioDisplayApplist.Active) != 0)
+            if ((styleList & (int)NotificationDisplayApplist.Active) != 0)
             {
                 NotificationEventArgs.ActiveStyleArgs activeStyle = new NotificationEventArgs.ActiveStyleArgs();
                 eventargs.Style.Add(activeStyle.Key, activeStyle);
@@ -52,7 +52,7 @@ namespace Tizen.Applications.NotificationEventListener
                 NotificationReplyActionArgBinder.BindObject(eventargs);
             }
 
-            if ((styleList & (int)NotificatioDisplayApplist.Lock) != 0)
+            if ((styleList & (int)NotificationDisplayApplist.Lock) != 0)
             {
                 NotificationEventArgs.LockStyleArgs lockStyle = new NotificationEventArgs.LockStyleArgs();
                 eventargs.Style.Add(lockStyle.Key, lockStyle);
@@ -64,7 +64,7 @@ namespace Tizen.Applications.NotificationEventListener
                 lockStyle.Thumbnail = path;
             }
 
-            if ((styleList & (int)NotificatioDisplayApplist.Ticker) != 0 || (styleList & (int)NotificatioDisplayApplist.Indicator) != 0)
+            if ((styleList & (int)NotificationDisplayApplist.Ticker) != 0 || (styleList & (int)NotificationDisplayApplist.Indicator) != 0)
             {
                 NotificationEventArgs.IndicatorStyleArgs indicatorStyle = new NotificationEventArgs.IndicatorStyleArgs();
                 eventargs.Style.Add(indicatorStyle.Key, indicatorStyle);