--- a/webengine/wrtharvester/src/wrtharvesterpublisherobserver.cpp Fri Jul 03 15:54:40 2009 +0100
+++ b/webengine/wrtharvester/src/wrtharvesterpublisherobserver.cpp Thu Aug 27 07:44:59 2009 +0300
@@ -57,13 +57,13 @@
// ----------------------------------------------------------------------------
//
CWrtHarvesterPublisherObserver* CWrtHarvesterPublisherObserver::NewLC(
- const TDesC& aName, CWrtHarvester* aHarvester )
+ const TDesC& aBundleId, CWrtHarvester* aHarvester )
{
CWrtHarvesterPublisherObserver* self(
new( ELeave ) CWrtHarvesterPublisherObserver( aHarvester ) );
CleanupStack::PushL( self );
- self->ConstructL( aName );
+ self->ConstructL( aBundleId );
return self;
}
@@ -74,16 +74,16 @@
CWrtHarvesterPublisherObserver::~CWrtHarvesterPublisherObserver()
{
ReleaseLiw();
- delete iName;
+ delete iBundleId;
}
// ----------------------------------------------------------------------------
// Symbian 2nd phase constructor can leave.
// ----------------------------------------------------------------------------
//
-void CWrtHarvesterPublisherObserver::ConstructL( const TDesC& aName )
+void CWrtHarvesterPublisherObserver::ConstructL( const TDesC& aBundleId )
{
- iName = aName.AllocL();
+ iBundleId = aBundleId.AllocL();
InitLiwL();
}
@@ -178,9 +178,9 @@
// CWrtHarvesterPublisherObserver::Name
// ---------------------------------------------------------------------------
//
-const TDesC& CWrtHarvesterPublisherObserver::Name()
+const TDesC& CWrtHarvesterPublisherObserver::BundleId()
{
- return *iName;
+ return *iBundleId;
}
// ---------------------------------------------------------------------------