AppLogDebug("ENTER");\r
bool saveAllExist(__pAttachFileArray->GetCount() > 1);\r
result r = E_FAILURE;\r
- String msg;\r
+ String msg(IDS_BLANK);\r
switch (status)\r
{\r
case LIST_ITEM_STATUS_SELECTED:\r
ContentManager::ScanDirectory(downloadFileDir,true, null, rqstId);\r
Application::GetInstance()->GetAppResource()->GetString(L"IDS_MSGF_POP_SAVED_IN_MY_FILES", msg);\r
}\r
+ else\r
+ {\r
+ AppLogDebug("Error in copying file to destination - %s ",GetErrorMessage(r));\r
+ }\r
}\r
else if (elementId == LIST_ELEMENT_SAVE_IMAGE)\r
{\r
ContentManager::ScanDirectory(downloadFileDir,true, null, rqstId);\r
Application::GetInstance()->GetAppResource()->GetString(L"IDS_MSGF_POP_SAVED_IN_MY_FILES", msg);\r
}\r
+ else\r
+ {\r
+ AppLogDebug("Error in copying file to destination - %s ",GetErrorMessage(r));\r
+ }\r
+ }\r
+ if (msg.GetLength())\r
+ {\r
+ CommonUtil::ShowMessageNotification(msg);\r
}\r
- CommonUtil::ShowMessageNotification(msg);\r
}\r
break;\r
\r
#include "MsgAttachementControl.h"
#include "MsgBitmapUtility.h"
+#include "MsgCommonUtil.h"
#include "MsgISizeChangeEventListener.h"
#include "MsgMediaControl.h"
#include "MsgMediaTextExpandEditArea.h"
r = RemoveControl(__pAttachCntrl);
__pAttachCntrl = null;
}
- __pExpandEditArea->SetBounds(0, 0, GetWidth(), MIN_COMPOSE_EDITOR_HEIGHT);
+ int adjustHeightForcomposePanel = CommonUtil::GetHeightAdjustment(CommonUtil::GetFontSize(COMPOSER_FORM));
+ __pExpandEditArea->SetBounds(0, 0, GetWidth(), MIN_COMPOSE_EDITOR_HEIGHT + adjustHeightForcomposePanel);
__prevBounds = __pExpandEditArea->GetBounds();
SetSize(GetWidth(), __pExpandEditArea->GetHeight());
AppLogDebug("EXIT: %s", GetErrorMessage(GetLastResult()));
mmsDataPath.Append(File::GetFileName(__pSelectFilePath));
AppLogDebug("MMS DATA PATH (new file name): %S", mmsDataPath.GetPointer());
r = File::Copy(__pSelectFilePath, mmsDataPath, true);
- AppLogDebug("File to inserted copy result : %s ", r);
+ AppLogDebug("File to inserted copy result : %s ", GetErrorMessage(r));
i++;
}
ComposeBaseControl* pPageInFocus = __pFocusControl;
if (__currentSlideIndex > 0)
{
__currentSlideIndex--;
+ __isSlideShowInPrgress = true;
ShowSlide(__currentSlideIndex);
__timeElapsed = __pMmsSlideData->GetSlideStartTime(__currentSlideIndex);
__pTimer->StartAsRepeatable(TIME_INTERVAL);