]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Timeout.C
hopefully fix tex2lyx linking.
[lyx.git] / src / frontends / Timeout.C
index db0b959c1dcd8653b5b5e37b84e9535f7570db06..21d673ce1aabac71620472761c1e7d76aee251b4 100644 (file)
@@ -12,9 +12,9 @@
 #include <config.h>
 
 #include "Timeout.h"
-#include "support/LAssert.h"
 
-using namespace lyx::support;
+
+namespace lyx {
 
 
 Timeout::~Timeout()
@@ -67,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