Fixed Jira issue(N_SE-34658)
authorJongTaeOh <jongtae.oh@samsung.com>
Tue, 16 Apr 2013 07:17:09 +0000 (16:17 +0900)
committerJongTaeOh <jongtae.oh@samsung.com>
Tue, 16 Apr 2013 07:17:09 +0000 (16:17 +0900)
Change-Id: I169bc4a57cf7c57252f9a91bb52b63e3a9be44f7

src/MpAlbumContentListForm.cpp
src/MpAllListEditorPanel.cpp
src/MpArtistContentListForm.cpp
src/MpFolderContentListForm.cpp
src/MpPlaylistContentListForm.cpp
src/MpSharePopup.cpp
src/MpUserPlaylistContentListForm.cpp

index 4763029..c7a14d4 100644 (file)
@@ -730,7 +730,7 @@ AlbumContentListForm::GetPickerArgumentListN(PickerType pickerType, PickerArgume
                                }
                                else if (pickerType == PICKER_TYPE_SHARE_PICKER)
                                {
-                                       pContentFilePathList->Add(*(new (std::nothrow) String(L"attachment:" + pContentInfo->ContentFilePath)));
+                                       pContentFilePathList->Add(*(new (std::nothrow) String(pContentInfo->ContentFilePath)));
                                }
                                delete pContentInfo;
                        }
index 7d5710b..e1671a4 100644 (file)
@@ -450,7 +450,7 @@ AllListEditorPanel::GetPickerArgumentListN(PickerType pickerType, PickerArgument
                                        AppLogDebug("EXIT");
                                        return null;
                                }
-                               pContentPathList->Add(*(new (std::nothrow) String(L"attachment:" + pContentInfo->ContentFilePath)));
+                               pContentPathList->Add(*(new (std::nothrow) String(pContentInfo->ContentFilePath)));
                                delete pContentInfo;
                        }
                }
index 8f52eef..477f065 100644 (file)
@@ -1136,7 +1136,7 @@ ArtistContentListForm::GetPickerArgumentListN(PickerType pickerType, PickerArgum
 
                if (pickerType == PICKER_TYPE_SHARE_PICKER)
                {
-                       pContentFilePathList->Add(*(new (std::nothrow) String(L"attachment:" + pContentInfo->ContentFilePath)));
+                       pContentFilePathList->Add(*(new (std::nothrow) String(pContentInfo->ContentFilePath)));
                }
                else if (pickerType == PICKER_TYPE_PLAY_LIST_PICKER)
                {
index de81232..b24bb30 100644 (file)
@@ -899,7 +899,7 @@ FolderContentListForm::GetPickerArgumentListN(PickerType pickerType, PickerArgum
                                }
                                else if (pickerType == PICKER_TYPE_SHARE_PICKER)
                                {
-                                       pContentFilePathList->Add(*(new (std::nothrow) String(L"attachment:" + pContentInfo->ContentFilePath)));
+                                       pContentFilePathList->Add(*(new (std::nothrow) String(pContentInfo->ContentFilePath)));
                                }
                                delete pContentInfo;
                        }
index 89a0b9e..244b505 100644 (file)
@@ -757,7 +757,7 @@ PlaylistContentListForm::GetPickerArgumentListN(PickerType pickerType, PickerArg
                                }
                                else if (pickerType == PICKER_TYPE_SHARE_PICKER)
                                {
-                                       pContentFilePathList->Add(*(new (std::nothrow) String(L"attachment:" + pContentInfo->ContentFilePath)));
+                                       pContentFilePathList->Add(*(new (std::nothrow) String(pContentInfo->ContentFilePath)));
                                }
                                delete pContentInfo;
                        }
index e7dd306..04b134e 100644 (file)
@@ -348,6 +348,7 @@ SharePopup::SetArguments(Tizen::Base::Collection::IList* pIList)
                }
                AppLogDebug("%ls", combineText.GetPointer());   */
 
+               AppLogDebug("Path(%ls)", static_cast<String*>(pIList->GetAt(0))->GetPointer());
                HashMap* pDataList = new (std::nothrow) HashMap(SingleObjectDeleter);
                pDataList->Construct();
                pDataList->Add(new (std::nothrow) String(APPCONTROL_KEY_PATH), static_cast<ArrayList*>(pIList));
index 86d6dfe..bbbeadb 100644 (file)
@@ -669,7 +669,7 @@ UserPlaylistContentListForm::GetPickerArgumentListN(PickerType pickerType, Picke
                                }
                                else if (pickerType == PICKER_TYPE_SHARE_PICKER)
                                {
-                                       pContentFilePathList->Add(*(new (std::nothrow) String(L"attachment:" + pContentInfo->ContentFilePath)));
+                                       pContentFilePathList->Add(*(new (std::nothrow) String(pContentInfo->ContentFilePath)));
                                }
                                delete pContentInfo;
                        }