diff -r e16d72588c28 -r 8a03a285ab14 commondrm/drmutility/src/DrmRightsInfoData.cpp --- a/commondrm/drmutility/src/DrmRightsInfoData.cpp Fri Mar 12 15:43:46 2010 +0200 +++ b/commondrm/drmutility/src/DrmRightsInfoData.cpp Mon Mar 15 12:41:43 2010 +0200 @@ -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