Fixed "extra qualification" syntax errors.
--- a/applicationmanagement/server/inc/AMAppHideUtil.h Sun Mar 14 13:08:44 2010 +0000
+++ b/applicationmanagement/server/inc/AMAppHideUtil.h Sun Mar 28 16:35:47 2010 +0100
@@ -75,7 +75,7 @@
/**
* Creates new CAMAppHideUtil instance
*/
- static CAMAppHideUtil* CAMAppHideUtil::NewL();
+ static CAMAppHideUtil* NewL();
/**
* Adds uid to list, and updates the repository if needed
--- a/customization/DMUtils/inc/TARMDmStreamAdapter.h Sun Mar 14 13:08:44 2010 +0000
+++ b/customization/DMUtils/inc/TARMDmStreamAdapter.h Sun Mar 28 16:35:47 2010 +0100
@@ -76,7 +76,7 @@
TInt iResultRef;
CTARMDmStreamAdapterBuffer::TTARMDMAction iAction;
public:
- CTARMDmStreamAdapterBuffer::CTARMDmStreamAdapterBuffer()
+ CTARMDmStreamAdapterBuffer()
: iURI( 0 )
, iLUID( 0 )
, iType( 0 )
@@ -85,7 +85,7 @@
, iAction( CTARMDmStreamAdapterBuffer::ETARMActionNone )
{
}
- static CTARMDmStreamAdapterBuffer* CTARMDmStreamAdapterBuffer::NewL(
+ static CTARMDmStreamAdapterBuffer* NewL(
const TDesC8 &aURI,
const TDesC8 &aLUID,
const TDesC8 &aType,
@@ -103,33 +103,33 @@
newObject->iAction = aAction;
return newObject;
}
- CTARMDmStreamAdapterBuffer::~CTARMDmStreamAdapterBuffer()
+ ~CTARMDmStreamAdapterBuffer()
{
delete iURI;
delete iLUID;
delete iType;
}
- const TDesC8& CTARMDmStreamAdapterBuffer::URI() const
+ const TDesC8& URI() const
{
return *iURI;
}
- const TDesC8& CTARMDmStreamAdapterBuffer::LUID() const
+ const TDesC8& LUID() const
{
return *iLUID;
}
- const TDesC8& CTARMDmStreamAdapterBuffer::Type() const
+ const TDesC8& Type() const
{
return *iType;
}
- TInt CTARMDmStreamAdapterBuffer::StatusRef() const
+ TInt StatusRef() const
{
return iStatusRef;
}
- TInt CTARMDmStreamAdapterBuffer::ResultRef() const
+ TInt ResultRef() const
{
return iResultRef;
}
- CTARMDmStreamAdapterBuffer::TTARMDMAction CTARMDmStreamAdapterBuffer::Action() const
+ CTARMDmStreamAdapterBuffer::TTARMDMAction Action() const
{
return iAction;
}
--- a/customization/isadapter/inc/IdleSoftkeysAppTargetManager.h Sun Mar 14 13:08:44 2010 +0000
+++ b/customization/isadapter/inc/IdleSoftkeysAppTargetManager.h Sun Mar 28 16:35:47 2010 +0100
@@ -31,7 +31,7 @@
public:
- CIdleSoftkeysAppTargetManager::CIdleSoftkeysAppTargetManager(MSmlDmCallback *& aCallBack);
+ CIdleSoftkeysAppTargetManager(MSmlDmCallback *& aCallBack);
~CIdleSoftkeysAppTargetManager();
//
--- a/customization/isadapter/inc/IdleSoftkeysWebTargetManager.h Sun Mar 14 13:08:44 2010 +0000
+++ b/customization/isadapter/inc/IdleSoftkeysWebTargetManager.h Sun Mar 28 16:35:47 2010 +0100
@@ -32,7 +32,7 @@
{
public:
- CIdleSoftkeysWebTargetManager::CIdleSoftkeysWebTargetManager(
+ CIdleSoftkeysWebTargetManager(
MSmlDmCallback *& aCallBack,
RFavouritesDb & aFavDbSrv );
--- a/devicediagnostics/diagplugins/diagheadsetcableplugin/inc/diagheadsetcableengine.h Sun Mar 14 13:08:44 2010 +0000
+++ b/devicediagnostics/diagplugins/diagheadsetcableplugin/inc/diagheadsetcableengine.h Sun Mar 28 16:35:47 2010 +0100
@@ -117,7 +117,7 @@
* @return ETrue - If dialog was dismissed by end user.
* EFalse - If dialog was deleted.
*/
- TBool CDiagHeadsetCableTestEngine::DisplayQueryDialogWithHeaderL(
+ TBool DisplayQueryDialogWithHeaderL(
TInt aDialogResourceId,
TInt& aUserResponse );
--- a/pnpmobileservices/pnpms/OnlineSupport/inc/MiniBrowser.h Sun Mar 14 13:08:44 2010 +0000
+++ b/pnpmobileservices/pnpms/OnlineSupport/inc/MiniBrowser.h Sun Mar 28 16:35:47 2010 +0100
@@ -114,7 +114,7 @@
Called from HttpGetL.
@see HttpGetL
*/
- void CMiniBrowser::DoHttpGetL(
+ void DoHttpGetL(
const TDesC& aUri,
const TBool aUseProxy,
const TDesC& aProxyAddress,