fix AppControl doxygen example
authorYoung Ik Cho <youngik.cho@samsung.com>
Mon, 13 May 2013 01:02:25 +0000 (10:02 +0900)
committerYoung Ik Cho <youngik.cho@samsung.com>
Mon, 13 May 2013 01:02:25 +0000 (10:02 +0900)
Change-Id: I43b0f85f0b5b82d2b4e994d9fda898b5028cbfc3
Signed-off-by: Young Ik Cho <youngik.cho@samsung.com>
inc/FAppAppManager.h

index 7a5e5eb..a0e84e1 100755 (executable)
@@ -100,13 +100,10 @@ public:
         * The following example demonstrates how to use the %FindAppControlN() method to find the application control.
         *
         * @code
-        * ArrayList dataList(SingleObjectDeleter);
-        * dataList.Construct();
-        * dataList.Add(new String(L"tel:1234567900"));
-        * dataList.Add(new String(L"type:voice"));
+        * String telUri = L"tel:12345678900";
         *
-        * AppControl* pAc = AppManager::FindAppControlN(L"tizen.phone", L"http://tizen.org/appcontrol/operation/call");
-        * pAc->Start(&dataList, null);
+        * AppControl* pAc = AppManager::FindAppControlN(L"tizen.phone", L"http://tizen.org/appcontrol/operation/dial");
+        * pAc->Start(&telUri, null, null, null);
         * @endcode
         */
        static AppControl* FindAppControlN(const AppId& appId, const Tizen::Base::String& operationId);