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/MapsWithMeApp.cpp')
-rw-r--r--tizen/MapsWithMe/src/MapsWithMeApp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tizen/MapsWithMe/src/MapsWithMeApp.cpp b/tizen/MapsWithMe/src/MapsWithMeApp.cpp
index fd2c9dd40b..7926bd9e82 100644
--- a/tizen/MapsWithMe/src/MapsWithMeApp.cpp
+++ b/tizen/MapsWithMe/src/MapsWithMeApp.cpp
@@ -13,7 +13,7 @@ MapsWithMeApp::MapsWithMeApp(void) {}
MapsWithMeApp::~MapsWithMeApp(void) {}
-UiApp * MapsWithMeApp::CreateInstance(void) {return new (std::nothrow) MapsWithMeApp();}
+UiApp * MapsWithMeApp::CreateInstance(void) {return new MapsWithMeApp();}
bool MapsWithMeApp::OnAppInitializing(AppRegistry& appRegistry)
{
@@ -28,7 +28,7 @@ bool MapsWithMeApp::OnAppInitializing(AppRegistry& appRegistry)
// Create the application frame.
- MapsWithMeFrame* pMapsWithMeFrame = new (std::nothrow) MapsWithMeFrame;
+ MapsWithMeFrame* pMapsWithMeFrame = new MapsWithMeFrame;
TryReturn(pMapsWithMeFrame != null, false, "The memory is insufficient.");
pMapsWithMeFrame->Construct();
pMapsWithMeFrame->SetName(L"MapsWithMe");