Fixed "extra qualification" syntax errors.
--- a/harvester/server/inc/backupsubscriber.h Sun Mar 14 12:49:29 2010 +0000
+++ b/harvester/server/inc/backupsubscriber.h Sun Mar 28 16:37:34 2010 +0100
@@ -75,7 +75,7 @@
@param aPropertyCategory observed key's category.
@param aKey observed key.
*/
- void CBackupSubscriber::NotifyKeyAndStatusL(
+ void NotifyKeyAndStatusL(
const TInt aKeyValue,
TRequestStatus& aStatus,
const TUid aPropertyCategory,
--- a/mds_plat/metadata_engine_api/inc/mdeobjectcondition.h Sun Mar 14 12:49:29 2010 +0000
+++ b/mds_plat/metadata_engine_api/inc/mdeobjectcondition.h Sun Mar 28 16:37:34 2010 +0100
@@ -232,7 +232,7 @@
* @param aString Text string to look for.
* @param aObjectIds object IDs to look for.
*/
- void CMdEObjectCondition::ConstructL( const RArray<TItemId>* aObjectIds,
+ void ConstructL( const RArray<TItemId>* aObjectIds,
const TDesC* aString, const TMdEUintRange* aRange );
private:
--- a/mds_plat/metadata_engine_api/inc/mdeproperty.h Sun Mar 14 12:49:29 2010 +0000
+++ b/mds_plat/metadata_engine_api/inc/mdeproperty.h Sun Mar 28 16:37:34 2010 +0100
@@ -69,7 +69,7 @@
* @param aObject owner object of property
* @return new numeric property
*/
- static CMdEProperty* CMdEProperty::NewL(const CMdEPropertyDef& aDef, const CMdEObject& aObject);
+ static CMdEProperty* NewL(const CMdEPropertyDef& aDef, const CMdEObject& aObject);
/**
* Constructs a new property.
@@ -78,7 +78,7 @@
* @param aObject owner object of property
* @return new numeric property
*/
- static CMdEProperty* CMdEProperty::NewLC(const CMdEPropertyDef& aDef, const CMdEObject& aObject);
+ static CMdEProperty* NewLC(const CMdEPropertyDef& aDef, const CMdEObject& aObject);
/**