From 397784e8535b358fd903f0d9f2d443bd631f88b8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Thu, 13 Dec 2007 22:55:57 +0000 Subject: [PATCH] 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 --- src/factory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2