fix: lint
This commit is contained in:
parent
cc961d40b3
commit
db1d859881
|
@ -59,10 +59,8 @@ class Clock final : public ALabel {
|
||||||
std::string cldMonCached_{};
|
std::string cldMonCached_{};
|
||||||
date::day cldBaseDay_{0};
|
date::day cldBaseDay_{0};
|
||||||
/*Calendar functions*/
|
/*Calendar functions*/
|
||||||
auto get_calendar(const date::year_month_day& today,
|
auto get_calendar(const date::year_month_day& today, const date::year_month_day& ymd,
|
||||||
const date::year_month_day& ymd,
|
const date::time_zone* tz) -> const std::string;
|
||||||
const date::time_zone* tz)
|
|
||||||
-> const std::string;
|
|
||||||
/*Clock actions*/
|
/*Clock actions*/
|
||||||
void cldModeSwitch();
|
void cldModeSwitch();
|
||||||
void cldShift_up();
|
void cldShift_up();
|
||||||
|
|
|
@ -28,10 +28,10 @@ AModule::AModule(const Json::Value& config, const std::string& name, const std::
|
||||||
|
|
||||||
// configure events' user commands
|
// configure events' user commands
|
||||||
|
|
||||||
bool hasEvent = std::find_if(eventMap_.cbegin(), eventMap_.cend(),
|
bool hasEvent =
|
||||||
[&config](const auto& eventEntry) {
|
std::find_if(eventMap_.cbegin(), eventMap_.cend(), [&config](const auto& eventEntry) {
|
||||||
return config[eventEntry.second].isString();
|
return config[eventEntry.second].isString();
|
||||||
}) != eventMap_.cend();
|
}) != eventMap_.cend();
|
||||||
|
|
||||||
if (enable_click || hasEvent) {
|
if (enable_click || hasEvent) {
|
||||||
event_box_.add_events(Gdk::BUTTON_PRESS_MASK);
|
event_box_.add_events(Gdk::BUTTON_PRESS_MASK);
|
||||||
|
|
Loading…
Reference in New Issue