]> git.lyx.org Git - features.git/commitdiff
Cut and paste solution to get export working. The issue is that the old
authorRichard Heck <rgheck@comcast.net>
Tue, 19 Oct 2010 15:34:13 +0000 (15:34 +0000)
committerRichard Heck <rgheck@comcast.net>
Tue, 19 Oct 2010 15:34:13 +0000 (15:34 +0000)
exportAndDestroy was calling:

    buffer->doExport(format, true, update_unincluded);

where "true" means: Leave it in the tempdir. We need false, which means
we need another parameter, if we're not doing it as cut and paste.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35717 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiView.cpp

index 724e4f4f47ff10ebac72a82565e26289133acc5e..1e499ce139afd768b6c3ba6cefde61e3e0d83610 100644 (file)
@@ -367,6 +367,7 @@ public:
        static QSet<Buffer const *> busyBuffers;
        static docstring previewAndDestroy(Buffer const * orig, Buffer * buffer, string const & format);
        static docstring exportAndDestroy(Buffer const * orig, Buffer * buffer, string const & format);
+       static docstring compileAndDestroy(Buffer const * orig, Buffer * buffer, string const & format);
        static docstring saveAndDestroy(Buffer const * orig, Buffer * buffer, FileName const & fname);
 
        // TODO syncFunc/previewFunc: use bind
@@ -2814,7 +2815,7 @@ bool GuiView::goToFileRow(string const & argument)
 
 
 #if (QT_VERSION >= 0x040400)
-docstring GuiView::GuiViewPrivate::exportAndDestroy(Buffer const * orig, Buffer * buffer, string const & format)
+docstring GuiView::GuiViewPrivate::compileAndDestroy(Buffer const * orig, Buffer * buffer, string const & format)
 {
        bool const update_unincluded =
                                buffer->params().maintain_unincluded_children
@@ -2822,6 +2823,20 @@ docstring GuiView::GuiViewPrivate::exportAndDestroy(Buffer const * orig, Buffer
        bool const success = buffer->doExport(format, true, update_unincluded);
        delete buffer;
        busyBuffers.remove(orig);
+       return success
+               ? bformat(_("Successful compilation to format: %1$s"), from_utf8(format))
+               : bformat(_("Error compiling format: %1$s"), from_utf8(format));
+}
+
+
+docstring GuiView::GuiViewPrivate::exportAndDestroy(Buffer const * orig, Buffer * buffer, string const & format)
+{
+       bool const update_unincluded =
+                               buffer->params().maintain_unincluded_children
+                               && !buffer->params().getIncludedChildren().empty();
+       bool const success = buffer->doExport(format, false, update_unincluded);
+       delete buffer;
+       busyBuffers.remove(orig);
        return success
                ? bformat(_("Successful export to format: %1$s"), from_utf8(format))
                : bformat(_("Error exporting to format: %1$s"), from_utf8(format));
@@ -2951,7 +2966,7 @@ void GuiView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                        d.asyncBufferProcessing(argument,
                                                doc_buffer,
                                                _("Exporting ..."),
-                                               &GuiViewPrivate::exportAndDestroy,
+                                               &GuiViewPrivate::compileAndDestroy,
                                                &Buffer::doExport,
                                                0);
                        break;
@@ -2969,7 +2984,7 @@ void GuiView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
                        d.asyncBufferProcessing(argument,
                                                (doc_buffer ? doc_buffer->masterBuffer() : 0),
                                                docstring(),
-                                               &GuiViewPrivate::exportAndDestroy,
+                                               &GuiViewPrivate::compileAndDestroy,
                                                &Buffer::doExport,
                                                0);
                        break;