Skip to content

Commit 762fda7

Browse files
committed
Happy linter
Signed-off-by: Viktar Lukashonak <myxabeer@gmail.com>
1 parent ae73448 commit 762fda7

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

src/modules/river/layout.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include "modules/river/layout.hpp"
22

3+
#include <glibmm/markup.h>
34
#include <spdlog/spdlog.h>
45
#include <wayland-client.h>
5-
#include <glibmm/markup.h>
66

77
#include "client.hpp"
88

src/modules/river/mode.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include "modules/river/mode.hpp"
22

3+
#include <glibmm/markup.h>
34
#include <spdlog/spdlog.h>
45
#include <wayland-client.h>
5-
#include <glibmm/markup.h>
66

77
#include "client.hpp"
88

src/modules/river/tags.cpp

+9-5
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,18 @@ Tags::Tags(const std::string &id, const waybar::Bar &bar, const Json::Value &con
136136
AModule::bindEvents(button);
137137

138138
if (set_tags.isArray() && !set_tags.empty())
139-
controllClick_->signal_released().connect(sigc::bind(sigc::mem_fun(*this, &Tags::handleRlse), set_tags[tag].asUInt()), true);
139+
controllClick_->signal_released().connect(
140+
sigc::bind(sigc::mem_fun(*this, &Tags::handleRlse), set_tags[tag].asUInt()), true);
140141
else
141-
controllClick_->signal_released().connect(sigc::bind(sigc::mem_fun(*this, &Tags::handleRlse), (1 << tag)), true);
142+
controllClick_->signal_released().connect(
143+
sigc::bind(sigc::mem_fun(*this, &Tags::handleRlse), (1 << tag)), true);
142144

143145
if (toggle_tags.isArray() && !toggle_tags.empty())
144-
controllClick_->signal_pressed().connect(sigc::bind(sigc::mem_fun(*this, &Tags::handlePress), toggle_tags[tag].asUInt()), true);
146+
controllClick_->signal_pressed().connect(
147+
sigc::bind(sigc::mem_fun(*this, &Tags::handlePress), toggle_tags[tag].asUInt()), true);
145148
else
146-
controllClick_->signal_pressed().connect(sigc::bind(sigc::mem_fun(*this, &Tags::handlePress), (1 << tag)), true);
149+
controllClick_->signal_pressed().connect(
150+
sigc::bind(sigc::mem_fun(*this, &Tags::handlePress), (1 << tag)), true);
147151
}
148152
button.show();
149153
}
@@ -168,7 +172,7 @@ Tags::~Tags() {
168172
Tags::operator Gtk::Widget &() { return box_; };
169173

170174
void Tags::handleRlse(int n_press, double dx, double dy, uint32_t tag) {
171-
// Send river command to select tag on left mouse click
175+
// Send river command to select tag on left mouse click
172176
zriver_command_callback_v1 *callback;
173177
zriver_control_v1_add_argument(control_, "set-focused-tags");
174178
zriver_control_v1_add_argument(control_, std::to_string(tag).c_str());

src/modules/river/window.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#include "modules/river/window.hpp"
22

3+
#include <glibmm/markup.h>
34
#include <spdlog/spdlog.h>
45
#include <wayland-client.h>
56

67
#include <algorithm>
7-
#include <glibmm/markup.h>
88

99
#include "client.hpp"
1010

0 commit comments

Comments
 (0)