diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-06-19 17:07:51 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-06-19 17:07:51 +0900 |
commit | 81a6d5f63b77f2ffaeef25cea30d2ecc486c7426 (patch) | |
tree | a4a440d1d8e370284f80ed78e6de197918836b12 /src/applist.cpp | |
parent | 8f01fbeeca1a6f3d10ea42b312191532a4a830d4 (diff) |
Shorten the length of line to under 100
Change-Id: I2f0819f804811001faf51423f52a4fb250823e5f
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/applist.cpp')
-rw-r--r-- | src/applist.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/applist.cpp b/src/applist.cpp index c6eaa0c..a5ae9f0 100644 --- a/src/applist.cpp +++ b/src/applist.cpp @@ -111,7 +111,8 @@ void AppList::removeSurface(unsigned surface){ { ret = x.second->removeSurfaceIfExist(surface); if(ret){ - HMI_DEBUG("wm", "remove surface %d from Client %s finish", surface, x.second->appID().c_str()); + HMI_DEBUG("wm", "remove surface %d from Client %s finish", + surface, x.second->appID().c_str()); break; } } |