diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-07-27 10:02:47 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-07-27 17:25:47 +0900 |
commit | 3d1703f9a5c9d6a356b561ea7528c70a1dc4fe2d (patch) | |
tree | bb914429501b6caf6b1b95092b6dd656ffc4adbe /src/window_manager.cpp | |
parent | 7ee936736ec753346d8a1811a3c9c014d4be8b41 (diff) |
Fix crashed application can re-launch
WM can't reset the state when application crashes,
after the below commit.
This patch fix the crashed application can re-launch.
Related commit:
https://gerrit.automotivelinux.org/gerrit/#/c/14871/
Bug-AGL: SPEC-1471
Change-Id: I46019b30cc8e9a341b4b681a0288f053b3ac1b30
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/window_manager.cpp')
-rw-r--r-- | src/window_manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window_manager.cpp b/src/window_manager.cpp index 612b544..98ebcf1 100644 --- a/src/window_manager.cpp +++ b/src/window_manager.cpp @@ -238,7 +238,7 @@ result<int> WindowManager::api_request_surface(char const *appid, char const *dr HMI_DEBUG("wm", "%s is not registered in layers.json, then fallback as normal app", role); if (!lid) { - return Err<int>("Drawing name does not match any role, Fallback is disabled"); + return Err<int>("Drawing name does not match any role, fallback is disabled"); } } @@ -292,7 +292,7 @@ char const *WindowManager::api_request_surface(char const *appid, char const *dr HMI_DEBUG("wm", "%s is not registered in layers.json, then fallback as normal app", role); if (!lid) { - return "Drawing name does not match any role, Fallback is disabled"; + return "Drawing name does not match any role, fallback is disabled"; } } |