diff -r 03646e8da489 -r 30f14686fb04 homescreenapp/hsutils/src/xqaiwgetimageclient.cpp --- a/homescreenapp/hsutils/src/xqaiwgetimageclient.cpp Fri Jun 11 13:30:16 2010 +0300 +++ b/homescreenapp/hsutils/src/xqaiwgetimageclient.cpp Wed Jun 23 18:03:36 2010 +0300 @@ -33,6 +33,12 @@ #endif //COVERAGE_MEASUREMENT +/*! + \class XQAIWGetImageClient + \ingroup group_hsutils + \brief +*/ + // --------------------------------------------------------------------------- // --------------------------------------------------------------------------- // @@ -56,11 +62,8 @@ // --------------------------------------------------------------------------- // --------------------------------------------------------------------------- // -void XQAIWGetImageClient::fetch( QVariantMap filter, XQAIWMultimediaFlags flag) +void XQAIWGetImageClient::fetch() { - Q_UNUSED(filter) - Q_UNUSED(flag) - QStringList imageDirNames; QStringList imageDirs; @@ -124,14 +127,11 @@ { Q_UNUSED(val) mImageGrid->disconnect(this); - QStringList list; - - list << val; HbMainWindow *window = HbInstance::instance()->allMainWindows().first(); window->removeView(mImageGrid); - emit fetchComplete(list); + emit fetchCompleted(val); QStringList images; mImageGrid->setContent(images); } @@ -151,7 +151,8 @@ HbMainWindow *window = HbInstance::instance()->allMainWindows().first(); window->removeView(mImageGrid); - emit fetchFailed(-1);//KErrNotFound + emit fetchFailed(-1, QString("")); //KErrNotFound + QStringList images; mImageGrid->setContent(images); }