commondrm/drmutility/src/DrmRightsInfoData.cpp
changeset 23 493788a4a8a4
parent 0 95b198f216e5
--- a/commondrm/drmutility/src/DrmRightsInfoData.cpp	Tue Feb 02 00:21:44 2010 +0200
+++ b/commondrm/drmutility/src/DrmRightsInfoData.cpp	Fri Apr 16 15:14:55 2010 +0300
@@ -17,7 +17,7 @@
 
 
 // INCLUDE FILES
-#include "drmrightsinfodata.h"
+#include "DrmRightsInfoData.h"
 
 // ============================= LOCAL FUNCTIONS ===============================
 
@@ -27,7 +27,7 @@
 // CDrmRightsInfoData::NewLC
 // Two-Phase constructor
 // -----------------------------------------------------------------------------
-//     
+//
 DRM::CDrmRightsInfoData* DRM::CDrmRightsInfoData::NewL()
     {
     DRM::CDrmRightsInfoData* self( NewLC() );
@@ -40,41 +40,41 @@
 // CDrmRightsInfoData::NewLC
 // Two-Phase constructor
 // -----------------------------------------------------------------------------
-//     
+//
 DRM::CDrmRightsInfoData* DRM::CDrmRightsInfoData::NewLC()
     {
     DRM::CDrmRightsInfoData* self( new (ELeave) CDrmRightsInfoData );
     CleanupStack::PushL( self );
     self->ConstructL();
-    return self;    
+    return self;
     }
 
 // -----------------------------------------------------------------------------
 // Constructor
 // -----------------------------------------------------------------------------
-//  
+//
 DRM::CDrmRightsInfoData::CDrmRightsInfoData()
-	{
-	}
-	
+    {
+    }
+
 // -----------------------------------------------------------------------------
 // Destructor
 // -----------------------------------------------------------------------------
-//  
+//
 DRM::CDrmRightsInfoData::~CDrmRightsInfoData()
-	{
-	delete iUniqueId;
-	delete iUniqueId8;
-	}
-	
+    {
+    delete iUniqueId;
+    delete iUniqueId8;
+    }
+
 // -----------------------------------------------------------------------------
 // CDrmRightsInfoData::ConstructL
 // Second phase constructor
 // -----------------------------------------------------------------------------
-//  
+//
 void DRM::CDrmRightsInfoData::ConstructL()
     {
     }
-    
-    
+
+
 //  End of File