]> git.lyx.org Git - lyx.git/blobdiff - src/exporter.C
cleanup after svn hang-up, #undef CursorShape. Should be compilable ganin now.
[lyx.git] / src / exporter.C
index 63d9aefaee11fa224a3cc89413729e6ab611abd1..5e6b2aad6ab240a18c3e2dc3dc47d134d6ce7ca3 100644 (file)
@@ -47,6 +47,8 @@ using lyx::support::onlyPath;
 using lyx::support::package;
 using lyx::support::prefixIs;
 
+using lyx::docstring;
+
 using std::find;
 using std::string;
 using std::vector;
@@ -74,8 +76,8 @@ vector<string> const Backends(Buffer const & buffer)
 int checkOverwrite(string const & filename)
 {
        if (fs::exists(filename)) {
-               string text = bformat(_("The file %1$s already exists.\n\n"
-                                       "Do you want to over-write that file?"),
+               docstring text = bformat(_("The file %1$s already exists.\n\n"
+                                                    "Do you want to over-write that file?"),
                                      makeDisplayPath(filename));
                return Alert::prompt(_("Over-write file?"),
                                     text, 0, 2,
@@ -191,11 +193,6 @@ bool Exporter::Export(Buffer * buffer, string const & format,
        // no backend
        else if (backend_format == "lyx")
                buffer->writeFile(filename);
-       // Linuxdoc backend
-       else if (buffer->isLinuxDoc()) {
-               runparams.nice = !put_in_tempdir;
-               buffer->makeLinuxDocFile(filename, runparams);
-       }
        // Docbook backend
        else if (buffer->isDocBook()) {
                runparams.nice = !put_in_tempdir;
@@ -250,7 +247,7 @@ bool Exporter::Export(Buffer * buffer, string const & format,
                                          result_file, result_file,
                                          status == FORCE);
                        buffer->message(bformat(_("Document exported as %1$s "
-                                                 "to file `%2$s'"),
+                                                              "to file `%2$s'"),
                                                formats.prettyName(format),
                                                makeDisplayPath(result_file)));
                } else {