]> git.lyx.org Git - lyx.git/blobdiff - src/Timeout.h
Fixes for/in insettabular/text.
[lyx.git] / src / Timeout.h
index 264cef33ef40662169d27dcb402d64d3159ff749..9cecc49d7a43e8b615f829323d5b783ebf1a1ca5 100644 (file)
@@ -40,7 +40,7 @@ public:
        ///
        Timeout();
        ///
-       Timeout(int msec, Type = ONETIME);
+       Timeout(unsigned int msec, Type = ONETIME);
        ///
        ~Timeout();
        ///
@@ -54,14 +54,14 @@ public:
        ///
        void emit();
        ///
-       void setType(Type t);
+       Timeout & setType(Type t);
        ///
-       void setTimeout(int msec);
+       Timeout & setTimeout(unsigned int msec);
 private:
        ///
        Type type;
        ///
-       int timeout_ms;
+       unsigned int timeout_ms;
        ///
        int timeout_id;
 };