Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tizen/MapsWithMe/src/BookMarkSplitPanel.cpp')
-rw-r--r--tizen/MapsWithMe/src/BookMarkSplitPanel.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/tizen/MapsWithMe/src/BookMarkSplitPanel.cpp b/tizen/MapsWithMe/src/BookMarkSplitPanel.cpp
index 2dd967504c..3c03b19ca5 100644
--- a/tizen/MapsWithMe/src/BookMarkSplitPanel.cpp
+++ b/tizen/MapsWithMe/src/BookMarkSplitPanel.cpp
@@ -129,10 +129,13 @@ void BookMarkSplitPanel::OnActionPerformed(Tizen::Ui::Control const & source, in
{
case ID_SHARE_BUTTON:
{
- String textVal = GetBMMnger().GetSMSTextMark(GetBMMnger().GetCurMark());
+ String textValSMS = GetBMMnger().GetSMSTextMark(GetBMMnger().GetCurMark());
+ String textValEmail = GetBMMnger().GetEmailTextMark(GetBMMnger().GetCurMark());
ArrayList * pList = new ArrayList;
pList->Construct();
- pList->Add(new String(textVal));
+ pList->Add(new String(textValSMS));
+ pList->Add(new String(textValEmail));
+ pList->Add(new Boolean(false)); //not my position but mark
SceneManager * pSceneManager = SceneManager::GetInstance();
pSceneManager->GoForward(ForwardSceneTransition(SCENE_SHARE_POSITION,
SCENE_TRANSITION_ANIMATION_TYPE_LEFT, SCENE_HISTORY_OPTION_ADD_HISTORY, SCENE_DESTROY_OPTION_KEEP), pList);