activityfw/storage/client/src/afstorageclient.cpp
changeset 124 e36b2f4799c0
parent 121 0b3699f6c654
--- a/activityfw/storage/client/src/afstorageclient.cpp	Fri Sep 17 08:32:18 2010 +0300
+++ b/activityfw/storage/client/src/afstorageclient.cpp	Mon Oct 04 00:38:31 2010 +0300
@@ -74,32 +74,6 @@
 
 // -----------------------------------------------------------------------------
 /**
- * Function add new activity
- * @param entry - activity entry data structure
- * @param imageHandle - handle for activity thumbnail
- * @return 0 on success, error code otherwise
- */
-EXPORT_C int CAfStorageClient::addActivity(const CAfEntry &entry, TInt imageHandle)
-{
-    RDebug::Print(_L("This method is deprecated, please use CAfStorageClient::saveActivity instead"));
-    return d_ptr->addActivity(entry, imageHandle);
-}
-
-// -----------------------------------------------------------------------------
-/**
- * Function update existing activity
- * @param entry - activity entry data structure
- * @param imageHandle - handle for activity thumbnail
- * @return 0 on success, error code otherwise
- */
-EXPORT_C int CAfStorageClient::updateActivity(const CAfEntry &entry, TInt imageHandle)
-{
-    RDebug::Print(_L("This method is deprecated, please use CAfStorageClient::saveActivity instead"));
-    return d_ptr->updateActivity(entry, imageHandle);
-}
-
-// -----------------------------------------------------------------------------
-/**
  * Function save an activity (add new one or update existing one)
  * @param entry - activity entry data structure
  * @param imageHandle - handle for activity thumbnail
@@ -189,9 +163,9 @@
 }
 
 // -----------------------------------------------------------------------------
-EXPORT_C int CAfStorageClient::getThumbnail(const TSize &size, const TDesC &imagePath, void *userData)
+EXPORT_C int CAfStorageClient::getThumbnail(const TDesC &imagePath, void *userData)
 {
-    return d_ptr->getThumbnail(size, imagePath, userData);
+    return d_ptr->getThumbnail(imagePath, userData);
 }
 
 // -----------------------------------------------------------------------------