aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Timer.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira@fluxbox.org>2015-02-05 20:35:02 (GMT)
committerMathias Gumz <akira@fluxbox.org>2015-02-05 20:35:02 (GMT)
commit92940571f3113a27673b6e79dba26e745079ff90 (patch)
tree169f08f96260ba79513aca81e3f30b9a95092f69 /src/FbTk/Timer.cc
parent0da4be2a0114d4419ceb70a4c6b6342f8fd79852 (diff)
downloadfluxbox-92940571f3113a27673b6e79dba26e745079ff90.zip
fluxbox-92940571f3113a27673b6e79dba26e745079ff90.tar.bz2
Cleanup; Remove unused function
Diffstat (limited to 'src/FbTk/Timer.cc')
-rw-r--r--src/FbTk/Timer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/Timer.cc b/src/FbTk/Timer.cc
index 61875f7..05d938b 100644
--- a/src/FbTk/Timer.cc
+++ b/src/FbTk/Timer.cc
@@ -239,7 +239,7 @@ Command<void> *DelayedCmd::parse(const std::string &command,
239 return 0; 239 return 0;
240 240
241 uint64_t delay = 200; 241 uint64_t delay = 200;
242 StringUtil::fromString<uint64_t>(args.c_str() + err, delay); 242 StringUtil::extractNumber(args.c_str() + err, delay);
243 243
244 return new DelayedCmd(cmd, delay); 244 return new DelayedCmd(cmd, delay);
245} 245}