--- 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);
-}