X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2FTimeout.C;h=99ee026f82cbed1be3686c35fdcd1eb329b17cc2;hb=36945644e70db39a8316570bb44fabc7a3bd3d49;hp=0cef024ee9acee35a24f804a3d6ecbd807755284;hpb=a4276f27f72014f03dbedd841e5686a7036389a0;p=lyx.git diff --git a/src/frontends/Timeout.C b/src/frontends/Timeout.C index 0cef024ee9..99ee026f82 100644 --- a/src/frontends/Timeout.C +++ b/src/frontends/Timeout.C @@ -6,13 +6,12 @@ * \author Lars Gullik Bjønnes * \author John Levon * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #include #include "Timeout.h" -#include "support/LAssert.h" Timeout::~Timeout() @@ -65,7 +64,7 @@ Timeout & Timeout::setType(Type t) Timeout & Timeout::setTimeout(unsigned int msec) { // Can't have a timeout of zero! - lyx::Assert(msec); + BOOST_ASSERT(msec); timeout_ms = msec; return * this;