Bug 2137 - Remove unnecessary method qualifiers.
--- a/browserutilities/downloadmgr/DownloadMgrServEng/Inc/HttpDownload.h Thu Mar 04 13:17:10 2010 -0800
+++ b/browserutilities/downloadmgr/DownloadMgrServEng/Inc/HttpDownload.h Thu Mar 04 14:02:57 2010 -0800
@@ -968,12 +968,12 @@
* Notifies gallery about new file
* @param aFileName file name
*/
- void CHttpDownload::NotifyMediaGalleryL( const TDesC& aFileName );
+ void NotifyMediaGalleryL( const TDesC& aFileName );
/**
* ConvertDownloadNameUniqueL
*/
- void CHttpDownload::ConvertDownloadNameUniqueL( HBufC*& filePath,
+ void ConvertDownloadNameUniqueL( HBufC*& filePath,
HBufC*& fileName,
HBufC*& fileExtn);
--- a/browserutilities/feedsengine/FeedsServer/Server/inc/FeedsDatabase.h Thu Mar 04 13:17:10 2010 -0800
+++ b/browserutilities/feedsengine/FeedsServer/Server/inc/FeedsDatabase.h Thu Mar 04 14:02:57 2010 -0800
@@ -88,7 +88,7 @@
* @return ETrue if the feed was resolved.
*/
- TBool CFeedsDatabase::FeedIdFromEntryIdL(const TInt& aEntryId, TInt aFolderListId, TInt& aFeedId);
+ TBool FeedIdFromEntryIdL(const TInt& aEntryId, TInt aFolderListId, TInt& aFeedId);
/**
* Returns the feed id of the entry id with the given feed.
@@ -99,7 +99,7 @@
* @param aEntryId The feed's folder item id
* @return ETrue if the feed was resolved.
*/
- TBool CFeedsDatabase::EntryIdFromFeedIdL(const TInt& aFeedId, TInt aFolderListId, TInt& aEntryId);
+ TBool EntryIdFromFeedIdL(const TInt& aFeedId, TInt aFolderListId, TInt& aEntryId);
/**
* Return the folder list ID of the feed with the given feed-id.
@@ -162,7 +162,7 @@
* @param aFolderItemId The resulting folder-item-id, if found.
* @return ETrue if a folder item with this name was found.
*/
- TBool CFeedsDatabase::FindFolderItemL(TInt& aFolderListId, const TDesC& aName,
+ TBool FindFolderItemL(TInt& aFolderListId, const TDesC& aName,
TInt& aFolderItemId);
/**
--- a/webengine/osswebengine/MemoryManager/Inc/MemoryManager.h Thu Mar 04 13:17:10 2010 -0800
+++ b/webengine/osswebengine/MemoryManager/Inc/MemoryManager.h Thu Mar 04 14:02:57 2010 -0800
@@ -306,7 +306,7 @@
* @param
* @return
*/
- IMPORT_C static void MemoryManager::CreateFastAllocator();
+ IMPORT_C static void CreateFastAllocator();
/**
* Initialize MemoryManager library. Special case if CreateFastAllocator is
@@ -316,7 +316,7 @@
* @param
* @return
*/
- IMPORT_C static void MemoryManager::InitFastAllocator();
+ IMPORT_C static void InitFastAllocator();
/**
* initialize the OOM handler in the memorypool
--- a/webengine/osswebengine/cache/inc/HttpCacheLookupTable.h Thu Mar 04 13:17:10 2010 -0800
+++ b/webengine/osswebengine/cache/inc/HttpCacheLookupTable.h Thu Mar 04 14:02:57 2010 -0800
@@ -106,7 +106,7 @@
* @param
* @return
*/
- TInt CHttpCacheLookupTable::ListFiles( RPointerArray<TDesC>& aFilenameList );
+ TInt ListFiles( RPointerArray<TDesC>& aFilenameList );
/**
*
--- a/webengine/widgetregistry/Server/inc/WidgetRegistry.h Thu Mar 04 13:17:10 2010 -0800
+++ b/webengine/widgetregistry/Server/inc/WidgetRegistry.h Thu Mar 04 14:02:57 2010 -0800
@@ -149,7 +149,7 @@
/**
* return serialized value of property aId for the widget aUid or leave
*/
- CBufFlat* CWidgetRegistry::GetWidgetPropertyValueL(
+ CBufFlat* GetWidgetPropertyValueL(
const TUid& aUid,
TWidgetPropertyId aId,
TInt aMaxLength );
--- a/webengine/wmlengine/src/MVC/include/MVCScroll.h Thu Mar 04 13:17:10 2010 -0800
+++ b/webengine/wmlengine/src/MVC/include/MVCScroll.h Thu Mar 04 14:02:57 2010 -0800
@@ -135,7 +135,7 @@
/**
* Method returns the first sibling box whose width and height are not zero
*/
- NW_LMgr_Box_t* CMVCScroll::GetFirstSiblingBox (NW_LMgr_Box_t* box);
+ NW_LMgr_Box_t* GetFirstSiblingBox (NW_LMgr_Box_t* box);
private: // Private methods and member variables
/**
--- a/webengine/wmlengine/src/lmgr/include/ObjectUtils.h Thu Mar 04 13:17:10 2010 -0800
+++ b/webengine/wmlengine/src/lmgr/include/ObjectUtils.h Thu Mar 04 14:02:57 2010 -0800
@@ -200,7 +200,7 @@
*
* @return void
*/
- static void ObjectUtils::RemoveAttributeL( CDesCArray& aNameArray,
+ static void RemoveAttributeL( CDesCArray& aNameArray,
CDesCArray& aValueArray, const TDesC& aName );
/**
@@ -210,7 +210,7 @@
*
* @return the associated content type of NULL if no association exists.
*/
- static TDesC* ObjectUtils::GetAssociatedContentType(const TDesC& aClassId);
+ static TDesC* GetAssociatedContentType(const TDesC& aClassId);
/**
* Returns the source param name associated with the given class-id.
@@ -219,7 +219,7 @@
*
* @return the associated source param name of NULL if no association exists.
*/
- static TDesC* ObjectUtils::GetAssociatedSourceParamName(const TDesC& aClassId);
+ static TDesC* GetAssociatedSourceParamName(const TDesC& aClassId);
/**
* General purpose panic function for Object related errors.
@@ -237,7 +237,7 @@
* @param aUrl The uri with file name and extension.
* @return the content type of the uri
*/
- static HBufC* ObjectUtils::GetContentTypeByUrl(const TDesC* aUri);
+ static HBufC* GetContentTypeByUrl(const TDesC* aUri);
private: // Private Methods
/**
@@ -289,7 +289,7 @@
* (either KParamName or KContentType)
* @return the value or NULL on out of memory.
*/
- static TDesC* ObjectUtils::GetClassidAssociation(const TDesC& aClassId,
+ static TDesC* GetClassidAssociation(const TDesC& aClassId,
TInt aValueSelector);
};
--- a/webengine/wmlengine/src/wmlcontrol/include/WmlControl.h Thu Mar 04 13:17:10 2010 -0800
+++ b/webengine/wmlengine/src/wmlcontrol/include/WmlControl.h Thu Mar 04 14:02:57 2010 -0800
@@ -97,7 +97,7 @@
// Sets the WmlLink
void SetWmlLink(TBool aLink) { iWmlLink = aLink; }
// Returns to the Browser Control info about the wml page
- HBufC* CWmlControl::PageInfoLC(TBrCtlDefs::TBrCtlPageInfo aBrCtlPageInfo);
+ HBufC* PageInfoLC(TBrCtlDefs::TBrCtlPageInfo aBrCtlPageInfo);
/**
* Update a Browser setting