# HG changeset patch # User Stefan Karlsson # Date 1269790582 -3600 # Node ID d08a2bd7f23a492d9ffdbe615a900e9a9a4a1fc3 # Parent e3fb32198e7710c59062fac856e2d1a497a1cf05 Fixed "extra qualification" syntax errors. diff -r e3fb32198e77 -r d08a2bd7f23a photosgallery/viewframework/dataprovider/inc/glxmulmodelproviderbase.h --- a/photosgallery/viewframework/dataprovider/inc/glxmulmodelproviderbase.h Sun Mar 14 13:09:41 2010 +0000 +++ b/photosgallery/viewframework/dataprovider/inc/glxmulmodelproviderbase.h Sun Mar 28 16:36:22 2010 +0100 @@ -125,7 +125,7 @@ * @param aMedia media item which has the updated data * @param aIsFocused */ - std::auto_ptr CGlxMulModelProviderBase::CreateItemT( const CGlxBinding& aBinding, + std::auto_ptr CreateItemT( const CGlxBinding& aBinding, const TGlxMedia& aMedia, TBool aIsFocused ); /** * IsFocused diff -r e3fb32198e77 -r d08a2bd7f23a photosgallery/viewframework/medialists/inc/glxmedia.h --- a/photosgallery/viewframework/medialists/inc/glxmedia.h Sun Mar 14 13:09:41 2010 +0000 +++ b/photosgallery/viewframework/medialists/inc/glxmedia.h Sun Mar 28 16:36:22 2010 +0100 @@ -244,7 +244,7 @@ * @param aAttribute The attribute to obtain * @return A pointer to the thumbnail attribute or NULL if unsuccessful. */ - IMPORT_C const CGlxThumbnailAttribute* TGlxMedia::ThumbnailAttribute( + IMPORT_C const CGlxThumbnailAttribute* ThumbnailAttribute( TMPXAttribute& aAttribute) const; /** diff -r e3fb32198e77 -r d08a2bd7f23a photosgallery/viewframework/views/fullscreenview/inc/glxfullscreenbindingsetfactory.h --- a/photosgallery/viewframework/views/fullscreenview/inc/glxfullscreenbindingsetfactory.h Sun Mar 14 13:09:41 2010 +0000 +++ b/photosgallery/viewframework/views/fullscreenview/inc/glxfullscreenbindingsetfactory.h Sun Mar 28 16:36:22 2010 +0100 @@ -28,8 +28,8 @@ NONSHARABLE_CLASS( TGlxMulFullScreenBindingSetFactory ) : public TGlxMulBindingSetFactory { public: - IMPORT_C TGlxMulFullScreenBindingSetFactory::TGlxMulFullScreenBindingSetFactory(); - IMPORT_C TGlxMulFullScreenBindingSetFactory::~TGlxMulFullScreenBindingSetFactory(); + IMPORT_C TGlxMulFullScreenBindingSetFactory(); + IMPORT_C ~TGlxMulFullScreenBindingSetFactory(); private: void AddBindingsL() const; };