]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Timeout.C
hopefully fix tex2lyx linking.
[lyx.git] / src / frontends / Timeout.C
index 64f1faf062454f73999949acee3d7106de1c831e..21d673ce1aabac71620472761c1e7d76aee251b4 100644 (file)
@@ -13,9 +13,8 @@
 
 #include "Timeout.h"
 
-#include "support/LAssert.h"
 
-using namespace lyx::support;
+namespace lyx {
 
 
 Timeout::~Timeout()
@@ -68,8 +67,11 @@ Timeout & Timeout::setType(Type t)
 Timeout & Timeout::setTimeout(unsigned int msec)
 {
        // Can't have a timeout of zero!
-       Assert(msec);
+       BOOST_ASSERT(msec);
 
        timeout_ms = msec;
        return * this;
 }
+
+
+} // namespace lyx