aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/app.cpp5
-rw-r--r--src/app.hpp4
-rw-r--r--src/config.cpp6
-rw-r--r--src/config.hpp4
-rw-r--r--src/controller_hooks.hpp4
-rw-r--r--src/layers.cpp4
-rw-r--r--src/layers.hpp4
-rw-r--r--src/layout.cpp4
-rw-r--r--src/layout.hpp4
-rw-r--r--src/result.hpp4
10 files changed, 1 insertions, 42 deletions
diff --git a/src/app.cpp b/src/app.cpp
index 88ee0fa..ac04336 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -14,10 +14,6 @@
* 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); });
}
diff --git a/src/app.hpp b/src/app.hpp
index 9df1573..be155a9 100644
--- a/src/app.hpp
+++ b/src/app.hpp
@@ -14,10 +14,6 @@
* limitations under the License.
*/
-//
-// Created by mfritzsc on 7/11/17.
-//
-
#ifndef TMCAGLWM_APP_HPP
#define TMCAGLWM_APP_HPP
diff --git a/src/config.cpp b/src/config.cpp
index b1f3fbe..1393fdd 100644
--- a/src/config.cpp
+++ b/src/config.cpp
@@ -14,10 +14,6 @@
* 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
diff --git a/src/config.hpp b/src/config.hpp
index 5b84c53..d1e2322 100644
--- a/src/config.hpp
+++ b/src/config.hpp
@@ -14,10 +14,6 @@
* limitations under the License.
*/
-//
-// Created by mfritzsc on 8/1/17.
-//
-
#ifndef TMCAGLWM_CONFIG_HPP
#define TMCAGLWM_CONFIG_HPP
diff --git a/src/controller_hooks.hpp b/src/controller_hooks.hpp
index 8618edc..c060b0b 100644
--- a/src/controller_hooks.hpp
+++ b/src/controller_hooks.hpp
@@ -14,10 +14,6 @@
* limitations under the License.
*/
-//
-// Created by mfritzsc on 7/28/17.
-//
-
#ifndef TMCAGLWM_CONTROLLER_HOOKS_HPP
#define TMCAGLWM_CONTROLLER_HOOKS_HPP
diff --git a/src/layers.cpp b/src/layers.cpp
index 6eae48a..55d3d3f 100644
--- a/src/layers.cpp
+++ b/src/layers.cpp
@@ -14,10 +14,6 @@
* limitations under the License.
*/
-//
-// Created by m on 7/27/17.
-//
-
#include <algorithm>
#include "json_helper.hpp"
diff --git a/src/layers.hpp b/src/layers.hpp
index a02eb00..525a8b1 100644
--- a/src/layers.hpp
+++ b/src/layers.hpp
@@ -14,10 +14,6 @@
* limitations under the License.
*/
-//
-// Created by m on 7/27/17.
-//
-
#ifndef TMCAGLWM_LAYERS_H
#define TMCAGLWM_LAYERS_H
diff --git a/src/layout.cpp b/src/layout.cpp
index 15ce535..1589ee9 100644
--- a/src/layout.cpp
+++ b/src/layout.cpp
@@ -14,8 +14,4 @@
* limitations under the License.
*/
-//
-// Created by mfritzsc on 6/27/17.
-//
-
#include "layout.hpp"
diff --git a/src/layout.hpp b/src/layout.hpp
index 32099ed..33a503d 100644
--- a/src/layout.hpp
+++ b/src/layout.hpp
@@ -14,10 +14,6 @@
* limitations under the License.
*/
-//
-// Created by mfritzsc on 6/27/17.
-//
-
#ifndef TMCAGLWM_LAYOUT_HPP
#define TMCAGLWM_LAYOUT_HPP
diff --git a/src/result.hpp b/src/result.hpp
index 60afe08..e14f92b 100644
--- a/src/result.hpp
+++ b/src/result.hpp
@@ -14,10 +14,6 @@
* limitations under the License.
*/
-//
-// Created by mfritzsc on 7/12/17.
-//
-
#ifndef TMCAGLWM_RESULT_HPP
#define TMCAGLWM_RESULT_HPP