clang format
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user