fix API description
authorGwangbok Kim <gwangbok.kim@samsung.com>
Thu, 28 Mar 2013 07:27:37 +0000 (16:27 +0900)
committerGwangbok Kim <gwangbok.kim@samsung.com>
Thu, 28 Mar 2013 07:27:37 +0000 (16:27 +0900)
Change-Id: I1b9a64e979d23e023d0a08d60572dae4a7bbdc9e
Signed-off-by: Gwangbok Kim <gwangbok.kim@samsung.com>
inc/FSclAddressbook.h

index b2090f6..1f2f6c8 100644 (file)
@@ -880,7 +880,7 @@ public:
         * Gets the change information of the contacts that have been changed after the specified change version. @n
         *
         * @brief <i> [Deprecated] </i>
-        * @deprecated This method is deprecated. Instead of using this method, use GetChangedContactInfoListAfterN().
+        * @deprecated This method is deprecated. Instead of using this method, use GetChangedContactInfoListN().
         *
         * @since       2.0
         * @privlevel   public
@@ -937,12 +937,12 @@ public:
         * @remarks             The specific error code can be accessed using the GetLastResult() method.
         * @see GetLatestVersion()
         *
-        * The following example demonstrates how to use the %GetChangedContactInfoListAfterN() method.
+        * The following example demonstrates how to use the %GetChangedContactInfoListN() method.
         * @code
         * void
         * MyApplication::GetChangedContacts(void)
         * {
-        *    IList* pChangedContacts = __pAddressbook->GetChangedContactInfoListAfterN (__version, __version);
+        *    IList* pChangedContacts = __pAddressbook->GetChangedContactInfoListN (__version, __version);
         *
         *    IEnumerator* pEnum = pChangedContacts->GetEnumeratorN();
         *    while (pEnum->MoveNext() == E_SUCCESS)
@@ -963,7 +963,7 @@ public:
         * Gets the change information of the categories that have been changed after the specified version.
         *
        * @brief <i> [Deprecated] </i>
-       * @deprecated This method is deprecated. Instead of using this method, use GetChangedCategoryInfoListAfterN().
+       * @deprecated This method is deprecated. Instead of using this method, use GetChangedCategoryInfoListN().
        *
         * @since       2.0
         * @privlevel   public
@@ -1022,12 +1022,12 @@ public:
         * @remarks             The specific error code can be accessed using the GetLastResult() method.
         * @see GetLatestVersion()
         *
-        * The following example demonstrates how to use the %GetChangedCategoryInfoListAfterN() method.
+        * The following example demonstrates how to use the %GetChangedCategoryInfoListN() method.
         * @code
         * void
         * MyApplication::GetChangedCategories(void)
         * {
-        *    IList* pChangedCategories = __pAddressbook->GetChangedCategoryInfoAfterN(__version, __version);
+        *    IList* pChangedCategories = __pAddressbook->GetChangedCategoryInfoN(__version, __version);
         *
         *    IEnumerator* pEnum = pChangedCategories->GetEnumeratorN();
         *    while (pEnum->MoveNext() == E_SUCCESS)