aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Timer.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2010-09-09 10:47:38 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2010-09-09 10:47:38 (GMT)
commite68511794130388ab9668fdef0dcf48dbbf002fd (patch)
tree94f5ad86689e8fd1ffc62864a99c4c76fe1e8cbe /src/FbTk/Timer.cc
parent82d0de9ef46d38288d2f1daa77ac18276d57390f (diff)
downloadfluxbox-e68511794130388ab9668fdef0dcf48dbbf002fd.zip
fluxbox-e68511794130388ab9668fdef0dcf48dbbf002fd.tar.bz2
simpler to use FbTk/Timer api
Diffstat (limited to 'src/FbTk/Timer.cc')
-rw-r--r--src/FbTk/Timer.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/FbTk/Timer.cc b/src/FbTk/Timer.cc
index 7d7a84b..60df968 100644
--- a/src/FbTk/Timer.cc
+++ b/src/FbTk/Timer.cc
@@ -85,6 +85,11 @@ void Timer::setTimeout(const timeval &t) {
85 m_timeout.tv_usec = t.tv_usec; 85 m_timeout.tv_usec = t.tv_usec;
86} 86}
87 87
88void Timer::setTimeout(unsigned int secs, unsigned int usecs) {
89 m_timeout.tv_sec = secs;
90 m_timeout.tv_usec = usecs;
91}
92
88void Timer::setCommand(RefCount<Command<void> > &cmd) { 93void Timer::setCommand(RefCount<Command<void> > &cmd) {
89 m_handler = cmd; 94 m_handler = cmd;
90} 95}