From 8595f62b8046331176db9b11025a19c78c0ed1c6 Mon Sep 17 00:00:00 2001 From: "SukHyung, Kang" Date: Tue, 7 Mar 2017 14:05:31 +0900 Subject: [PATCH] fix app event add error to get event properly Change-Id: Ifc5ed25848efb2fac381dd3ef03055f7592df42f Signed-off-by: SukHyung, Kang --- .../Tizen.Applications.CoreBackend/ServiceCoreBackend.cs | 2 +- .../Tizen.Applications.CoreBackend/UICoreBackend.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tizen.Applications.Service/Tizen.Applications.CoreBackend/ServiceCoreBackend.cs b/src/Tizen.Applications.Service/Tizen.Applications.CoreBackend/ServiceCoreBackend.cs index 4a86b80..bf6746c 100755 --- a/src/Tizen.Applications.Service/Tizen.Applications.CoreBackend/ServiceCoreBackend.cs +++ b/src/Tizen.Applications.Service/Tizen.Applications.CoreBackend/ServiceCoreBackend.cs @@ -149,7 +149,7 @@ namespace Tizen.Applications.CoreBackend protected override void OnLowMemoryNative(IntPtr infoHandle, IntPtr data) { - base.OnLowBatteryNative(infoHandle, data); + base.OnLowMemoryNative(infoHandle, data); } protected override void OnLowBatteryNative(IntPtr infoHandle, IntPtr data) diff --git a/src/Tizen.Applications.UI/Tizen.Applications.CoreBackend/UICoreBackend.cs b/src/Tizen.Applications.UI/Tizen.Applications.CoreBackend/UICoreBackend.cs index 212334d..50af98b 100755 --- a/src/Tizen.Applications.UI/Tizen.Applications.CoreBackend/UICoreBackend.cs +++ b/src/Tizen.Applications.UI/Tizen.Applications.CoreBackend/UICoreBackend.cs @@ -175,7 +175,7 @@ namespace Tizen.Applications.CoreBackend protected override void OnLowMemoryNative(IntPtr infoHandle, IntPtr data) { - base.OnLowBatteryNative(infoHandle, data); + base.OnLowMemoryNative(infoHandle, data); } protected override void OnLowBatteryNative(IntPtr infoHandle, IntPtr data) -- 2.7.4