]> git.lyx.org Git - features.git/commitdiff
factory.cpp: fix wrong call of abort() introduced in r22137
authorUwe Stöhr <uwestoehr@web.de>
Thu, 13 Dec 2007 22:55:57 +0000 (22:55 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Thu, 13 Dec 2007 22:55:57 +0000 (22:55 +0000)
(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

index 71c92ac31193de6ac5db65e0bc6d952082b3dfbb..d5c1ddd1f676f8a29447418410054d6919f2b8a3 100644 (file)
@@ -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;