Fix doxygen description 43/130543/1 accepted/tizen/4.0/unified/20170816.013956 accepted/tizen/4.0/unified/20170828.224031 accepted/tizen/unified/20170608.072314 submit/tizen/20170607.071223 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170828.100002
authorWootak Jung <wootak.jung@samsung.com>
Tue, 23 May 2017 01:22:38 +0000 (10:22 +0900)
committerWootak Jung <wootak.jung@samsung.com>
Tue, 23 May 2017 01:22:38 +0000 (10:22 +0900)
Change-Id: Id5bfce549f365807350243af5c1d450a8fe6e390

doc/telephony_doc.h
packaging/capi-telephony.spec
test_src/sim.c

index d5411294fe18817e54fcaf229f6b7df287a01663..978b04027237455d036cbbea17a9e48ae284dc7a 100644 (file)
@@ -37,7 +37,7 @@
  *
  * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.\n
  *
- * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature List</b>.</a>
+ * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature Element</b>.</a>
  */
 
 /**
@@ -61,7 +61,7 @@
  *
  * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.\n
  *
- * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature List</b>.</a>
+ * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature Element</b>.</a>
  */
 
 /**
@@ -85,7 +85,7 @@
  *
  * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.\n
  *
- * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature List</b>.</a>
+ * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature Element</b>.</a>
  */
 
 /**
  *
  * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.\n
  *
- * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature List</b>.</a>
+ * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature Element</b>.</a>
  */
 
 /**
  *
  * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.\n
  *
- * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature List</b>.</a>
+ * More details on featuring your application can be found from <a href="https://developer.tizen.org/development/tizen-studio/native-tools/configuring-your-app/manifest-text-editor#feature"><b>Feature Element</b>.</a>
  */
 
 #endif /* __TIZEN_TELEPHONY_INFORMATION_DOC_H__ */
index 7b91920055e94eac56d0c9277c2158e539bc0ea2..219b178df541eb42975dc9b093a5b02f9dcc1524 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-telephony
 Summary:    Telephony Core API
-Version:    0.1.75
+Version:    0.1.76
 Release:    1
 Group:      System/Libraries
 License:    Apache-2.0
index 1b4b416790405635ed5a00a86847739be227bd3b..92268a746e12d3dd4c98778a28d261900e119b25 100644 (file)
@@ -36,10 +36,12 @@ static int sim_noti_tbl[] = {
 static const char *convert_sim_state(telephony_sim_state_e state)
 {
        switch (state) {
-       case TELEPHONY_SIM_STATE_AVAILABLE:
-               return "AVAILABLE";
+       case TELEPHONY_SIM_STATE_UNAVAILABLE:
+               return "UNAVAILABLE";
        case TELEPHONY_SIM_STATE_LOCKED:
                return "LOCKED";
+       case TELEPHONY_SIM_STATE_AVAILABLE:
+               return "AVAILABLE";
        case TELEPHONY_SIM_STATE_UNKNOWN:
        default:
                return "UNKNOWN";