]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Timeout.h
fix typo that put too many include paths for most people
[lyx.git] / src / frontends / Timeout.h
index b737b1b978936f98b03015a4f9e964d0d59194e9..5c0061abbcd945cd487a4b75a8891532e800ae12 100644 (file)
@@ -29,11 +29,11 @@ public:
                CONTINUOUS
        };
        ///
-       Timeout();
-       ///
        Timeout(unsigned int msec, Type = ONETIME);
        ///
        ~Timeout();
+       /// Is the timer running?
+       bool running() const;
        /// start the timer
        void start();
        /// stop the timer
@@ -50,11 +50,12 @@ public:
        Timeout & setTimeout(unsigned int msec);
 
 private:
+       ///
        struct Pimpl;
+       ///
        friend struct Pimpl;
        /// implementation
        Pimpl * pimpl_;
-
        /// one-shot or repeating
        Type type;
        /// timeout value in milliseconds