openbsd-ports/x11/fluxbox/patches/patch-src_FbTk_Timer_hh
dcoppa 3af1701582 Another round of bug fixes:
Simplifies and fix bugs in FbTk::Timer
(upstream git commit 33161595f482d0dad950ce127b6016eefe8ea691)

Fix bug: actually invert a given Texture (stupid typo)
(upstream git commit bf5da7f1b6e87f574774558700d066d9cff1f436)
2013-01-21 09:49:20 +00:00

25 lines
854 B
Plaintext

$OpenBSD: patch-src_FbTk_Timer_hh,v 1.1 2013/01/21 09:49:20 dcoppa Exp $
Simplifies and fix bugs in FbTk::Timer
(upstream git commit 33161595f482d0dad950ce127b6016eefe8ea691)
--- src/FbTk/Timer.hh.orig Mon Dec 10 18:26:54 2012
+++ src/FbTk/Timer.hh Mon Jan 21 10:25:31 2013
@@ -61,7 +61,7 @@ class Timer { (public)
static void updateTimers(int file_descriptor);
- int isTiming() const { return m_timing; }
+ int isTiming() const { return (m_start > 0); }
int getInterval() const { return m_interval; }
int doOnce() const { return m_once; }
@@ -77,7 +77,6 @@ class Timer { (public)
private:
RefCount<Slot<void> > m_handler; ///< what to do on a timeout
- bool m_timing; ///< clock running?
bool m_once; ///< do timeout only once?
int m_interval; ///< Is an interval-only timer (e.g. clock), in seconds