minor clang-format
[staging/windowmanager.git] / src / app.cpp
index 0bf4529..8c929fe 100644 (file)
 
 #include <json-c/json.h>
 
-#include <fstream>
-#include <json.hpp>
 #include <bits/signum.h>
 #include <csignal>
+#include <fstream>
+#include <json.hpp>
 
 namespace wm {
 
@@ -99,7 +99,7 @@ App::App(wl::display *d)
      display{d},
      controller{},
      outputs(),
-     layouts(), //load_layout("../layout.json").unwrap()),
+     layouts(),  // load_layout("../layout.json").unwrap()),
      surface2layer(load_layer_ids("../ids.json").unwrap()) {
    // layouts(load_layout("../layout.json").unwrap()) {
    assert(g_app == nullptr);
@@ -253,7 +253,7 @@ void App::surface_created(uint32_t surface_id) {
             if (h < 0) {
                h = c->output_size.h + 1 + h;
             }
-            logdebug("Computed rect={ %d, %d, %d, %d }", x,  y, w, h);
+            logdebug("Computed rect={ %d, %d, %d, %d }", x, y, w, h);
 
             s->set_configuration(w, h);
             s->set_source_rectangle(0, 0, w, h);
@@ -261,8 +261,7 @@ void App::surface_created(uint32_t surface_id) {
 
             s->set_visibility(1);
             c->layers[layer_id]->add_surface(s.get());
-            logdebug("Surface %u now on layer %u", surface_id,
-                     layer_id);
+            logdebug("Surface %u now on layer %u", surface_id, layer_id);
          });
    }
 }
@@ -312,7 +311,8 @@ binding_api::result_type binding_api::debug_status() {
 
 binding_api::result_type binding_api::debug_terminate() {
    logdebug("%s", __func__);
-   raise(SIGKILL);  // XXX afb-daemon kills it's pgroup using TERM, which doesn't play well with perf
+   raise(SIGKILL);  // XXX afb-daemon kills it's pgroup using TERM, which
+                    // doesn't play well with perf
    return Ok(json_object_new_object());
 }