X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fexporter.C;h=7d9c2b3f09de64253175d85e765b5bade4fd5122;hb=98c966c64594611e469313314abd1e59524adb4a;hp=bb3b05a2dc37c5c01957fbe3dcafbecb40740237;hpb=427f6a68ff838dd063e38e48f0f34efd01f9ef60;p=lyx.git diff --git a/src/exporter.C b/src/exporter.C index bb3b05a2dc..7d9c2b3f09 100644 --- a/src/exporter.C +++ b/src/exporter.C @@ -1,8 +1,8 @@ /* This file is part of - * ====================================================== - * + * ====================================================== + * * LyX, The Document Processor - * + * * Copyright 1995 Matthias Ettrich * Copyright 1995-2001 The LyX Team. * @@ -24,6 +24,7 @@ #include "converter.h" #include "frontends/Alert.h" #include "gettext.h" +#include "BufferView.h" using std::vector; using std::find; @@ -31,6 +32,18 @@ using std::find; bool Exporter::Export(Buffer * buffer, string const & format, bool put_in_tempdir, string & result_file) { + // There are so many different places that this function can be called + // from that the removal of auto insets is best done here. This ensures + // we always have a clean buffer for inserting errors found during export. + BufferView * bv = buffer->getUser(); + if (bv) { + // Remove all error insets + if (bv->removeAutoInsets()) { + bv->redraw(); + bv->fitCursor(); + } + } + string backend_format; vector backends = Backends(buffer); if (find(backends.begin(), backends.end(), format) == backends.end()) { @@ -56,7 +69,7 @@ bool Exporter::Export(Buffer * buffer, string const & format, string filename = buffer->getLatexName(false); if (!buffer->tmppath.empty()) filename = AddName(buffer->tmppath, filename); - filename = ChangeExtension(filename, + filename = ChangeExtension(filename, formats.extension(backend_format)); // Ascii backend @@ -125,7 +138,7 @@ vector const Exporter::GetExportableFormats(Buffer const * buffer, bool only_viewable) { vector backends = Backends(buffer); - vector result = + vector result = converters.getReachable(backends[0], only_viewable, true); for (vector::const_iterator it = backends.begin() + 1; it != backends.end(); ++it) {