diff -r 2c833fc9e98f -r 1ee2af37811f ui/uiengine/medialistwrapper/src/glxmlwrapper.cpp --- a/ui/uiengine/medialistwrapper/src/glxmlwrapper.cpp Fri May 14 15:52:22 2010 +0300 +++ b/ui/uiengine/medialistwrapper/src/glxmlwrapper.cpp Thu May 27 12:51:42 2010 +0300 @@ -119,6 +119,21 @@ return (mMLWrapperPrivate->RetrieveItemFrameCount(index)); } +QString GlxMLWrapper::retrieveViewTitle() +{ + return (mMLWrapperPrivate->RetrieveViewTitle()); +} + +void GlxMLWrapper::handlepopulated() +{ + emit populated(); +} + +bool GlxMLWrapper::IsPopulated() +{ + return mMLWrapperPrivate->IsPopulated(); +} + QVariant GlxMLWrapper::RetrieveBitmap(int index) { QVariant var; @@ -238,4 +253,12 @@ Q_UNUSED(aError); } +// --------------------------------------------------------------------------- +// handleTitleAvailable. +// --------------------------------------------------------------------------- +// +void GlxMLWrapper::handleTitleAvailable(QString aTitle) +{ + emit updateAlbumTitle(aTitle); +}