clang format

This commit is contained in:
2026-02-09 13:50:26 +01:00
parent e1217305a5
commit ea9ab4b2cb
19 changed files with 66 additions and 67 deletions

View File

@@ -71,11 +71,11 @@ class Timer : public Gtk::Box {
}
void updateTimeLeft(uint64_t timeValue) {
uint64_t s = timeValue % 100;
uint64_t m = (timeValue / 100) % 100;
uint64_t h = timeValue / 10000;
uint64_t s = timeValue % 100;
uint64_t m = (timeValue / 100) % 100;
uint64_t h = timeValue / 10000;
uint64_t totalSeconds = h * 3600 + m * 60 + s;
this->timeLeft = totalSeconds;
this->timeLeft = totalSeconds;
std::ostringstream out;
if (h > 0) {