diff options
author | Yuta Doi <yuta-d@witz-inc.co.jp> | 2017-11-10 17:41:05 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-11-10 14:34:08 +0000 |
commit | c392fff74872af6d4f165ff3f854d19f390ec0ee (patch) | |
tree | cefb2683252e645196c96b3f3e0de5470e16bae7 /src/app.cpp | |
parent | 0b1d9ca2550bdb877d065a74e4debcc95c4e7b98 (diff) |
Remove and replace the comments
Remove the unnecessary comments
and replace ascii-art comments with doxygen format.
Change-Id: Id1abf56db58070a83f403a1f8280bc9888e7de09
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
Diffstat (limited to 'src/app.cpp')
-rw-r--r-- | src/app.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/app.cpp b/src/app.cpp index af552b5..307217e 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -504,8 +504,7 @@ char const *App::api_deactivate_surface(char const *drawing_name) { return "No surface active"; } - // XXX: check against main_surface, main_surface_name is the configuration - // item. + // Check against main_surface, main_surface_name is the configuration item. if (*surface_id == this->layers.main_surface) { HMI_DEBUG("wm", "Refusing to deactivate main_surface %d", *surface_id); return nullptr; @@ -580,7 +579,6 @@ char const *App::api_enddraw(char const *drawing_name) { if (n && *n == drawing_name) { std::swap(this->pending_end_draw[i], this->pending_end_draw[iend - 1]); this->pending_end_draw.resize(iend - 1); - // XXX: Please tell the compositor to thaw the surface... this->activate(this->pending_end_draw[i]); this->layout_commit(); this->emit_flushdraw(drawing_name); |