aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-06-18 09:50:56 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-06-18 09:50:56 +0900
commitd50bc2311ce07e7e5e60b217cc5d904eaf4f9c59 (patch)
treeab8f79fc2bb99559fb8d0fb4e5ac5f48a7d41e57
parent54ab541502c60b09f37645691637df4bdb7bef84 (diff)
Fix : debug message is wrong
Change-Id: I7936d13c96a791fa8b17f1f78c4074c7a3483ce3 Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r--src/app.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app.cpp b/src/app.cpp
index 3322a21..0c89804 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -725,7 +725,7 @@ WMError App::setInvisibleTask(const std::string &role, bool split)
if (state.main == -1)
{
HMI_DEBUG("wm", "Layout: %s", kNameLayoutNormal);
- state = LayoutState{*surface_id};
+ //state = LayoutState{*surface_id};
/* this->try_layout(
state, LayoutState{*surface_id}, [&](LayoutState const &nl) {
HMI_DEBUG("wm", "Layout: %s", kNameLayoutNormal);
@@ -763,7 +763,7 @@ WMError App::setInvisibleTask(const std::string &role, bool split)
g_app_list.setAction(req, deact_sub);
}
}
- state = LayoutState{state.main, *surface_id};
+ //state = LayoutState{state.main, *surface_id};
}
else
{
@@ -805,11 +805,11 @@ WMError App::setInvisibleTask(const std::string &role, bool split)
}
deact_sub.visible = task_visible;
deact_sub.end_draw_finished = end_draw_finished;
- HMI_SEQ_DEBUG(req, "sub surface ddoesn't exist");
+ HMI_SEQ_DEBUG(req, "sub surface doesn't exist");
g_app_list.setAction(req, deact_sub);
}
}
- state = LayoutState{*surface_id};
+ //state = LayoutState{*surface_id};
}
}
}