fotaapplication/fotaserver/src/FotaDlClient.cpp
changeset 73 ae69c2e8bc34
parent 51 2e64dc50f295
--- a/fotaapplication/fotaserver/src/FotaDlClient.cpp	Tue Sep 28 17:53:08 2010 +0530
+++ b/fotaapplication/fotaserver/src/FotaDlClient.cpp	Fri Oct 15 11:46:45 2010 +0530
@@ -67,7 +67,7 @@
 
     TInt ret = ENotOk;
 
-    iDownload = iFotaDlMgrClient->Manager()->createDownload(url, type); //Step 6
+    iDownload = iFotaDlMgrClient->Manager()->createDownload(url, type);
 
     if (iDownload)
         {
@@ -93,8 +93,8 @@
 
     int ret(EOk);
 
-    iDownload->setAttribute(ProgressInterval, 100); //Step 7
-    iDownload->setAttribute(Priority, High); //Step 8
+    iDownload->setAttribute(ProgressInterval, 100);
+    iDownload->setAttribute(Priority, High);
 
     //Setting the default path
     iDownload->setAttribute(DestinationPath, DefaultPath);
@@ -114,7 +114,7 @@
     FLOG(_L("DownloadClient::Start >>"));
 
     iClientinterrupted = false;
-    iDownload->start(); //Step 9
+    iDownload->start();
 
     FLOG(_L("DownloadClient::Start <<"));
     return EOk;