]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Timeout.C
namespace grfx -> lyx::graphics
[lyx.git] / src / frontends / Timeout.C
index 0cef024ee9acee35a24f804a3d6ecbd807755284..9d7052fe548e9ed7e6a353ae26b613e3c1e96734 100644 (file)
@@ -14,6 +14,8 @@
 #include "Timeout.h"
 #include "support/LAssert.h"
 
+using namespace lyx::support;
+
 
 Timeout::~Timeout()
 {
@@ -65,7 +67,7 @@ Timeout & Timeout::setType(Type t)
 Timeout & Timeout::setTimeout(unsigned int msec)
 {
        // Can't have a timeout of zero!
-       lyx::Assert(msec);
+       Assert(msec);
 
        timeout_ms = msec;
        return * this;