From c0f2ab8bbcc987f2aa0b7bfa896c768a624130ad Mon Sep 17 00:00:00 2001 From: Jinhyung Choi Date: Fri, 7 Aug 2015 13:06:55 +0900 Subject: [PATCH] menu: changed ecp jar path for launching For the extension purpose, the ecp jar path is changed to point common directory in platforms. Change-Id: I9f412550e2f66b40383fc883906ccc18fba8a04d Signed-off-by: Jinhyung Choi --- tizen/src/ui/menu/contextmenu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tizen/src/ui/menu/contextmenu.cpp b/tizen/src/ui/menu/contextmenu.cpp index 884ef3ed54..1f087a0b0f 100644 --- a/tizen/src/ui/menu/contextmenu.cpp +++ b/tizen/src/ui/menu/contextmenu.cpp @@ -603,9 +603,9 @@ void ContextMenu::slotControlPanel() QString ecpPath = QCoreApplication::applicationDirPath(); #ifdef CONFIG_WIN32 - ecpPath += "\\emulator-control-panel.jar"; + ecpPath += "\\..\\..\\..\\common\\emulator\\bin\\emulator-control-panel.jar"; #else - ecpPath += "/emulator-control-panel.jar"; + ecpPath += "/../../../common/emulator/bin/emulator-control-panel.jar"; #endif QFileInfo ecpFileInfo(ecpPath); -- 2.34.1