| 484 | cldCurrShift_ += (months)((cldMode_ == CldMode::YEAR) ? 12 : 1) * cldShift_; |
| 485 | } |
| 486 | void waybar::modules::Clock::cldShift_down() { |
| 487 | cldCurrShift_ -= (months)((cldMode_ == CldMode::YEAR) ? 12 : 1) * cldShift_; |
| 488 | } |
| 489 | void waybar::modules::Clock::cldShift_reset() { cldCurrShift_ = (months)0; } |
| 490 | void waybar::modules::Clock::tz_up() { |
| 491 | const auto tzSize{tzList_.size()}; |
nothing calls this directly
no outgoing calls
no test coverage detected