Fix build break 24/65624/1
authorByungWoo Lee <bw1212.lee@samsung.com>
Tue, 12 Apr 2016 00:35:09 +0000 (09:35 +0900)
committerByungWoo Lee <bw1212.lee@samsung.com>
Tue, 12 Apr 2016 00:35:09 +0000 (09:35 +0900)
Change-Id: Ibcc53fd40ff5138c12918f85604c15ea0603cb6f

src/include/mobile/utils_i18n_types.h
src/include/mobile/utils_i18n_ucollator.h
src/include/wearable/utils_i18n_ucollator.h

index 15af9484360b695494f86d68343e4983df3f8367..7fa2b7a14ad63783fc3712c7e37f6878398532a4 100644 (file)
@@ -1592,7 +1592,7 @@ typedef struct {
  * @brief Handle to struct representing a range of text containing a specific field.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
-typedef i18n_ufield_position_s *18n_ufield_position_h;
+typedef i18n_ufield_position_s *i18n_ufield_position_h;
 
 /**
  * @brief Enumeration for the possible date/time format styles.
index 595940312e0c8855f04f6cd5f61a12c4228faf8e..a0be21a100d9e8cd1187381b404e4a5f035c9031 100755 (executable)
@@ -92,7 +92,7 @@ extern "C" {
 
     // compares and sorts in ascending order
     if (ret == I18N_ERROR_NONE) {
-        i18n_ucollator_set_strength( coll, I18N_UCOLLATOR_TERTIARY );
+        i18n_ucollator_set_strength(coll, I18N_UCOLLATOR_TERTIARY);
         for (i = 0; i < 2; i++) {
             for (j = 0; j < 2 - i; j++) {
                 i18n_ustring_copy_ua(buf_01, src[j]);
@@ -113,7 +113,7 @@ extern "C" {
     i18n_ucollator_destroy( coll );    // deallocate memory for collator
 
     for (i = 0; i < sizeof(src) / sizeof(src[0]); i++) {
-        dlog_print(DLOG_INFO, LOG_TAG, "%s\n", src[i] );
+        dlog_print(DLOG_INFO, LOG_TAG, "%s\n", src[i]);
     }    // ariplane    banana    cat
  * @endcode
  */
index d492ffd664fe547af2f6c3c0f747ab33d65027a0..a0be21a100d9e8cd1187381b404e4a5f035c9031 100755 (executable)
@@ -88,7 +88,7 @@ extern "C" {
     }    // cat    banana    airplane
 
     // creates a collator
-    ret = i18n_ucollator_create( "en_US", &coll );
+    ret = i18n_ucollator_create("en_US", &coll);
 
     // compares and sorts in ascending order
     if (ret == I18N_ERROR_NONE) {