# HG changeset patch # User Stefan Karlsson # Date 1269790711 -3600 # Node ID 2b524de5b49b3128e485561008645fe9063c8396 # Parent 5e70f222339871226297c6f8095abbdb71f5e825 Fixed "extra qualification" syntax errors. diff -r 5e70f2223398 -r 2b524de5b49b web_plat/feeds_engine_api/inc/FeedsEntity.h --- a/web_plat/feeds_engine_api/inc/FeedsEntity.h Sun Mar 14 13:13:51 2010 +0000 +++ b/web_plat/feeds_engine_api/inc/FeedsEntity.h Sun Mar 28 16:38:31 2010 +0100 @@ -96,7 +96,7 @@ /** * Two-phased constructor. */ - CFeedsEntity* CFeedsEntity::NewMiniItemL(); + CFeedsEntity* NewMiniItemL(); /** diff -r 5e70f2223398 -r 2b524de5b49b web_plat/feeds_engine_api/inc/FeedsInterface.h --- a/web_plat/feeds_engine_api/inc/FeedsInterface.h Sun Mar 14 13:13:51 2010 +0000 +++ b/web_plat/feeds_engine_api/inc/FeedsInterface.h Sun Mar 28 16:38:31 2010 +0100 @@ -230,14 +230,14 @@ * * @return void */ - IMPORT_C void RFeedsInterface::DebugPrintTablesL(); + IMPORT_C void DebugPrintTablesL(); /** * Disconnect connection provided by client for manual update. * * @return void */ - IMPORT_C void RFeedsInterface::DisconnectManualUpdateConnectionL(); + IMPORT_C void DisconnectManualUpdateConnectionL(); /** * Fetches feed (async) @@ -295,7 +295,7 @@ * @return void. */ - IMPORT_C void RFeedsInterface::WatchSettingsL(); + IMPORT_C void WatchSettingsL(); /** * Export passed folder in OPML file @@ -469,4 +469,4 @@ }; #endif // FEED_INTERFACE_H -// End of File \ No newline at end of file +// End of File diff -r 5e70f2223398 -r 2b524de5b49b web_plat/feeds_engine_api/inc/XmlEncoding.h --- a/web_plat/feeds_engine_api/inc/XmlEncoding.h Sun Mar 14 13:13:51 2010 +0000 +++ b/web_plat/feeds_engine_api/inc/XmlEncoding.h Sun Mar 28 16:38:31 2010 +0100 @@ -180,7 +180,7 @@ * @param aValueEnd The end of the encoding's value * @return ETrue if the encoding was found. */ - TBool CXmlEncoding::FindEncoding(const TDesC8& aBuffer, + TBool FindEncoding(const TDesC8& aBuffer, TInt& aBegin, TInt& aEnd, TInt& aValueBegin, TInt& aValueEnd) const; /** @@ -194,7 +194,7 @@ * @param aValueEnd The end of the encoding's value * @return ETrue if the encoding was found. */ - TBool CXmlEncoding::FindEncoding(const TDesC& aBuffer, + TBool FindEncoding(const TDesC& aBuffer, TInt& aBegin, TInt& aEnd, TInt& aValueBegin, TInt& aValueEnd) const;