mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
fix: lint
This commit is contained in:
parent
cc961d40b3
commit
db1d859881
@ -59,10 +59,8 @@ class Clock final : public ALabel {
|
||||
std::string cldMonCached_{};
|
||||
date::day cldBaseDay_{0};
|
||||
/*Calendar functions*/
|
||||
auto get_calendar(const date::year_month_day& today,
|
||||
const date::year_month_day& ymd,
|
||||
const date::time_zone* tz)
|
||||
-> const std::string;
|
||||
auto get_calendar(const date::year_month_day& today, const date::year_month_day& ymd,
|
||||
const date::time_zone* tz) -> const std::string;
|
||||
/*Clock actions*/
|
||||
void cldModeSwitch();
|
||||
void cldShift_up();
|
||||
|
@ -28,11 +28,11 @@ AModule::AModule(const Json::Value& config, const std::string& name, const std::
|
||||
|
||||
// configure events' user commands
|
||||
|
||||
bool hasEvent = std::find_if(eventMap_.cbegin(), eventMap_.cend(),
|
||||
[&config](const auto& eventEntry) {
|
||||
return config[eventEntry.second].isString();
|
||||
}) != eventMap_.cend();
|
||||
|
||||
bool hasEvent =
|
||||
std::find_if(eventMap_.cbegin(), eventMap_.cend(), [&config](const auto& eventEntry) {
|
||||
return config[eventEntry.second].isString();
|
||||
}) != eventMap_.cend();
|
||||
|
||||
if (enable_click || hasEvent) {
|
||||
event_box_.add_events(Gdk::BUTTON_PRESS_MASK);
|
||||
event_box_.signal_button_press_event().connect(sigc::mem_fun(*this, &AModule::handleToggle));
|
||||
|
Loading…
Reference in New Issue
Block a user