javamanager/javainstaller/installer/src.s60/applicationregistrator/sifnotifier.cpp
branchRCL_3
changeset 18 9ac0a0a7da70
parent 17 0fd27995241b
child 24 6c158198356e
--- a/javamanager/javainstaller/installer/src.s60/applicationregistrator/sifnotifier.cpp	Tue May 11 16:07:20 2010 +0300
+++ b/javamanager/javainstaller/installer/src.s60/applicationregistrator/sifnotifier.cpp	Tue May 25 12:34:19 2010 +0300
@@ -23,7 +23,7 @@
 
 #if defined(SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK) && defined(RD_JAVA_USIF_NOTIFY_PROGRESS)
 
-#include <usif/sifnotification.h>
+#include <usif/sif/sifnotification.h>
 #include <usif/usifcommon.h>
 
 // Helper macro for logging a TDesC.
@@ -117,7 +117,7 @@
             aComponentSize, /*aIconPath=*/ (NULL != aIconDir? *iconDir: KNullDesC()),
             /*aComponentIcon=*/ KNullDesC(), Usif::KSoftwareTypeJava);
 
-    User::LeaveIfError(aNotifier->PublishStart(*startData));
+    aNotifier->PublishStartL(*startData);
 
     CleanupStack::PopAndDestroy(startData);
 
@@ -178,7 +178,7 @@
                                         *globalComponentId, (TErrorCategory)aErrCategory, aErrCode,
                                         *errMsg, *errMsgDetails);
 
-    User::LeaveIfError(aNotifier->PublishCompletion(*endData));
+    aNotifier->PublishCompletionL(*endData);
 
     CleanupStack::PopAndDestroy(endData);
 
@@ -225,7 +225,7 @@
                 *globalComponentId, (TSifOperationPhase)aOperation,
                 (TSifOperationSubPhase)aSubOperation, aCurrent, aTotal);
 
-    User::LeaveIfError(aNotifier->PublishProgress(*progressData));
+    aNotifier->PublishProgressL(*progressData);
 
     CleanupStack::PopAndDestroy(progressData);
     CleanupStack::PopAndDestroy(globalComponentId);