aboutsummaryrefslogtreecommitdiff
path: root/src/ClockTool.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2012-09-14 06:52:13 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2012-09-14 06:52:13 (GMT)
commite512c1becd6fc267e64460f0883a16b4975da19e (patch)
treee8ed253b12726f909bd8f31e00feba9ccda782a9 /src/ClockTool.cc
parent2f279e96b16b40ac8f1aa0b9850dd13f7ec4d0ae (diff)
downloadfluxbox-e512c1becd6fc267e64460f0883a16b4975da19e.zip
fluxbox-e512c1becd6fc267e64460f0883a16b4975da19e.tar.bz2
minor cosmetic
Diffstat (limited to 'src/ClockTool.cc')
-rw-r--r--src/ClockTool.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ClockTool.cc b/src/ClockTool.cc
index 1fcdb53..3591f4f 100644
--- a/src/ClockTool.cc
+++ b/src/ClockTool.cc
@@ -72,9 +72,10 @@ uint64_t calcNextTimeout(const std::string& fmt_string) {
72 72
73 if (showSeconds(fmt_string)) { // microseconds till next full second 73 if (showSeconds(fmt_string)) { // microseconds till next full second
74 return FbTk::FbTime::remainingNext(FbTk::FbTime::IN_SECONDS); 74 return FbTk::FbTime::remainingNext(FbTk::FbTime::IN_SECONDS);
75 } else { // microseconds until next full minute 75 }
76 return FbTk::FbTime::remainingNext(60L * FbTk::FbTime::IN_SECONDS); 76
77 } 77 // microseconds until next full minute
78 return FbTk::FbTime::remainingNext(60L * FbTk::FbTime::IN_SECONDS);
78} 79}
79 80
80 81