Change preference error value to match with capi
authorSukHyung, Kang <shine.kang@samsung.com>
Wed, 8 Feb 2017 05:57:44 +0000 (14:57 +0900)
committerJunghoon Park <jh9216.park@samsung.com>
Wed, 8 Feb 2017 06:23:18 +0000 (22:23 -0800)
Change-Id: I57820e56feb0158e1e630178f7ef84aafe2f62cb
Signed-off-by: SukHyung, Kang <shine.kang@samsung.com>
packaging/csapi-application.spec
src/Tizen.Applications.Common/Tizen.Applications/CoreApplication.cs
src/Tizen.Applications.Preference/Tizen.Applications/Preference.cs

index bf09be7..2974998 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       csapi-application
 Summary:    Tizen Application API for C#
-Version:    1.2.0
+Version:    1.2.1
 Release:    1
 Group:      Development/Libraries
 License:    Apache-2.0
index 92eaff1..8448e18 100644 (file)
@@ -100,7 +100,7 @@ namespace Tizen.Applications
         }
 
         /// <summary>
-        /// Exits the main loop of the application. 
+        /// Exits the main loop of the application.
         /// </summary>
         public override void Exit()
         {
index 8dfbb1b..42311fc 100755 (executable)
@@ -427,7 +427,7 @@ namespace Tizen.Applications
             None = ErrorCode.None,
             OutOfMemory = ErrorCode.OutOfMemory,
             InvalidParameter = ErrorCode.InvalidParameter,
-            KeyNotAvailable = ErrorCode.KeyNotAvailable,
+            KeyNotAvailable = -0x01100000 | 0x30,
             IoError = ErrorCode.IoError
         }