activityfw/storage/server/src/afstoragesynctask.cpp
changeset 127 7b66bc3c6dc9
parent 125 26079c1bb561
--- a/activityfw/storage/server/src/afstoragesynctask.cpp	Wed Oct 13 12:59:22 2010 +0300
+++ b/activityfw/storage/server/src/afstoragesynctask.cpp	Mon Oct 18 10:44:15 2010 +0300
@@ -185,19 +185,3 @@
         table[iter]->BroadcastReceivedL(msg);
     }
 }
-
-// -----------------------------------------------------------------------------
-//
-// -----------------------------------------------------------------------------
-//
-void AfStorageSyncTask::CreateThumbnailL(const TDesC &path, TInt hdl)
-{
-    if (0 >= hdl) {
-        User::Leave(KErrCorrupt);
-    }
-    CFbsBitmap *bitmap = new (ELeave) CFbsBitmap;
-    CleanupStack::PushL(bitmap);
-    User::LeaveIfError(bitmap->Duplicate(hdl));
-    User::LeaveIfError(bitmap->Save(path));
-    CleanupStack::PopAndDestroy(bitmap);
-}