]> git.lyx.org Git - lyx.git/blobdiff - src/support/Timeout.cpp
Remove unneeded mutable keywords
[lyx.git] / src / support / Timeout.cpp
index 7639fa600da3d88569eb6137a5f90041d8e95098..6a628fd931d244bf1840284f78b8417d492a4e25 100644 (file)
@@ -139,7 +139,7 @@ Timeout & Timeout::setType(Type t)
 Timeout & Timeout::setTimeout(unsigned int msec)
 {
        // Can't have a timeout of zero!
-       LASSERT(msec, /**/);
+       LASSERT(msec, msec = 1000);
 
        timeout_ms = msec;
        return *this;