From: Uwe Stöhr Date: Thu, 13 Dec 2007 22:55:57 +0000 (+0000) Subject: factory.cpp: fix wrong call of abort() introduced in r22137 X-Git-Tag: 1.6.10~6930 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=397784e8535b358fd903f0d9f2d443bd631f88b8;p=features.git factory.cpp: fix wrong call of abort() introduced in r22137 (I got: factory.cpp(366) : error C2039: 'abort': Is no element of 'lyx::support') git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22140 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/factory.cpp b/src/factory.cpp index 71c92ac311..d5c1ddd1f6 100644 --- a/src/factory.cpp +++ b/src/factory.cpp @@ -363,7 +363,7 @@ Inset * createInset(Buffer & buf, FuncRequest const & cmd) if (message.type_ == ErrorException) { Alert::error(message.title_, message.details_); LyX::cref().emergencyCleanup(); - support::abort(); + abort(); } else if (message.type_ == WarningException) { Alert::warning(message.title_, message.details_); return 0;