commondrm/drmutility/src/drmuierrorhandling.cpp
changeset 23 493788a4a8a4
parent 0 95b198f216e5
--- a/commondrm/drmutility/src/drmuierrorhandling.cpp	Tue Feb 02 00:21:44 2010 +0200
+++ b/commondrm/drmutility/src/drmuierrorhandling.cpp	Fri Apr 16 15:14:55 2010 +0300
@@ -18,7 +18,7 @@
 
 
 #include "drmuierrorhandling.h"
-#include "drmuihandlingimpl.h"
+#include "DrmUiHandlingImpl.h"
 
 // ---------------------------------------------------------------------------
 // Constructor
@@ -78,33 +78,33 @@
 // RFile based method
 // ---------------------------------------------------------------------------
 //
-EXPORT_C TInt DRM::CDrmUiErrorHandling::HandleErrorAsyncL( 
+EXPORT_C TInt DRM::CDrmUiErrorHandling::HandleErrorAsyncL(
     RFile& aFile,
-    ContentAccess::TIntent aIntent, 
-    TInt aError, 
+    ContentAccess::TIntent aIntent,
+    TInt aError,
     DRM::MDrmHandleErrorObserver& aObserver )
     {
-    TInt operation = iImplementation->HandleErrorAsyncL( aFile, 
-                                                         aIntent, 
-                                                         aError, 
+    TInt operation = iImplementation->HandleErrorAsyncL( aFile,
+                                                         aIntent,
+                                                         aError,
                                                          aObserver);
-    return operation;                                           
+    return operation;
     }
-        
+
 // ---------------------------------------------------------------------------
 // CDrmUiErrorHandling::HandleErrorL
 // RFile based method
 // ---------------------------------------------------------------------------
 //
-EXPORT_C void DRM::CDrmUiErrorHandling::HandleErrorL( 
+EXPORT_C void DRM::CDrmUiErrorHandling::HandleErrorL(
     RFile& aFile,
-    ContentAccess::TIntent aIntent,              
-    TInt aError, 
+    ContentAccess::TIntent aIntent,
+    TInt aError,
     DRM::MDrmHandleErrorObserver* aObserver )
     {
-    iImplementation->HandleErrorL( aFile, 
-                                   aIntent, 
-                                   aError, 
+    iImplementation->HandleErrorL( aFile,
+                                   aIntent,
+                                   aError,
                                    aObserver);
     }
 
@@ -113,34 +113,34 @@
 // ContentAccess::CData based method
 // ---------------------------------------------------------------------------
 //
-EXPORT_C TInt DRM::CDrmUiErrorHandling::HandleErrorAsyncL( 
+EXPORT_C TInt DRM::CDrmUiErrorHandling::HandleErrorAsyncL(
     ContentAccess::CData& aFile,
     ContentAccess::TIntent aIntent,
-    TInt aError, 
+    TInt aError,
     DRM::MDrmHandleErrorObserver& aObserver )
     {
-    TInt operation = iImplementation->HandleErrorAsyncL( aFile, 
-                                                         aIntent, 
-                                                         aError, 
+    TInt operation = iImplementation->HandleErrorAsyncL( aFile,
+                                                         aIntent,
+                                                         aError,
                                                          aObserver);
-    return operation;     
+    return operation;
     }
-    
+
 // ---------------------------------------------------------------------------
 // CDrmUiErrorHandling::HandleErrorL
 // ContentAccess::CData based method
 // ---------------------------------------------------------------------------
 //
-EXPORT_C void DRM::CDrmUiErrorHandling::HandleErrorL( 
+EXPORT_C void DRM::CDrmUiErrorHandling::HandleErrorL(
     ContentAccess::CData& aFile,
     ContentAccess::TIntent aIntent,
-    TInt aError, 
+    TInt aError,
     DRM::MDrmHandleErrorObserver* aObserver )
     {
-    iImplementation->HandleErrorL( aFile, 
-                                   aIntent, 
-                                   aError, 
-                                   aObserver);    
+    iImplementation->HandleErrorL( aFile,
+                                   aIntent,
+                                   aError,
+                                   aObserver);
     }