]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsConverter.C
If the graphics loader has a copy c-tor it should have copy assignment that does...
[lyx.git] / src / graphics / GraphicsConverter.C
index 58f83eec3ed04828b5c3e52dc953c7618fb2d6a0..baf4abe44877fcfa088ab166d2c15a467b140be8 100644 (file)
@@ -19,6 +19,8 @@
 #include "support/filetools.h"
 #include "support/forkedcall.h"
 #include "support/forkedcallqueue.h"
+#include "support/tostr.h"
+#include "support/lstrings.h"
 #include "support/lyxlib.h"
 
 #include <boost/bind.hpp>
@@ -158,9 +160,9 @@ Converter::Impl::Impl(string const & from_file,   string const & to_file_base,
        } else {
 
                lyxerr[Debug::GRAPHICS] << "\tConversion script:"
-                               << "\n--------------------------------------\n"
-                               << STRCONV(script.str())
-                               << "\n--------------------------------------\n";
+                       << "\n--------------------------------------\n"
+                       << STRCONV(script.str())
+                       << "\n--------------------------------------\n";
 
                // Output the script to file.
                static int counter = 0;
@@ -177,7 +179,7 @@ Converter::Impl::Impl(string const & from_file,   string const & to_file_base,
                // The command needed to run the conversion process
                // We create a dummy command for ease of understanding of the
                // list of forked processes.
-               // Note that 'sh ' is absolutely essential, or execvp will fail.
+               // Note: 'sh ' is absolutely essential, or execvp will fail.
                script_command_ = "sh " + script_file_ + ' ' +
                        OnlyFilename(from_file) + ' ' + to_format;
        }