remove some unnuecessary comments
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>
Tue, 8 Aug 2017 10:03:35 +0000 (12:03 +0200)
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>
Tue, 8 Aug 2017 15:30:49 +0000 (17:30 +0200)
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
src/app.cpp
src/app.hpp
src/config.cpp
src/config.hpp
src/controller_hooks.hpp
src/layers.cpp
src/layers.hpp
src/layout.cpp
src/layout.hpp
src/result.hpp

index 88ee0fa..ac04336 100644 (file)
  * limitations under the License.
  */
 
-//
-// Created by mfritzsc on 7/11/17.
-//
-
 #include "app.hpp"
 #include "json_helper.hpp"
 #include "layers.hpp"
@@ -375,7 +371,6 @@ void App::surface_created(uint32_t surface_id) {
    DB("surface_id is " << surface_id);
 
    // We need to execute the surface setup after its creation.
-   // XXX: perhaps move the late-tasks functionality to App?
    this->add_task("surface_set_layout",
                   [surface_id, this] { this->surface_set_layout(surface_id); });
 }
index 9df1573..be155a9 100644 (file)
  * limitations under the License.
  */
 
-//
-// Created by mfritzsc on 7/11/17.
-//
-
 #ifndef TMCAGLWM_APP_HPP
 #define TMCAGLWM_APP_HPP
 
index b1f3fbe..1393fdd 100644 (file)
  * limitations under the License.
  */
 
-//
-// Created by mfritzsc on 8/1/17.
-//
-
 #include "config.hpp"
 
 namespace wm {
@@ -28,4 +24,4 @@ config::config() : cfg() {
    this->cfg["layout.json"] = getenv("LAYOUT_JSON") ?: "../layout.json";
 }
 
-}  // namespace wm
\ No newline at end of file
+}  // namespace wm
index 5b84c53..d1e2322 100644 (file)
  * limitations under the License.
  */
 
-//
-// Created by mfritzsc on 8/1/17.
-//
-
 #ifndef TMCAGLWM_CONFIG_HPP
 #define TMCAGLWM_CONFIG_HPP
 
index 8618edc..c060b0b 100644 (file)
  * limitations under the License.
  */
 
-//
-// Created by mfritzsc on 7/28/17.
-//
-
 #ifndef TMCAGLWM_CONTROLLER_HOOKS_HPP
 #define TMCAGLWM_CONTROLLER_HOOKS_HPP
 
index 6eae48a..55d3d3f 100644 (file)
  * limitations under the License.
  */
 
-//
-// Created by m on 7/27/17.
-//
-
 #include <algorithm>
 
 #include "json_helper.hpp"
index a02eb00..525a8b1 100644 (file)
  * limitations under the License.
  */
 
-//
-// Created by m on 7/27/17.
-//
-
 #ifndef TMCAGLWM_LAYERS_H
 #define TMCAGLWM_LAYERS_H
 
index 15ce535..1589ee9 100644 (file)
@@ -14,8 +14,4 @@
  * limitations under the License.
  */
 
-//
-// Created by mfritzsc on 6/27/17.
-//
-
 #include "layout.hpp"
index 32099ed..33a503d 100644 (file)
  * limitations under the License.
  */
 
-//
-// Created by mfritzsc on 6/27/17.
-//
-
 #ifndef TMCAGLWM_LAYOUT_HPP
 #define TMCAGLWM_LAYOUT_HPP
 
index 60afe08..e14f92b 100644 (file)
  * limitations under the License.
  */
 
-//
-// Created by mfritzsc on 7/12/17.
-//
-
 #ifndef TMCAGLWM_RESULT_HPP
 #define TMCAGLWM_RESULT_HPP