]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeX.h
Updates from Bennett and myself.
[lyx.git] / src / LaTeX.h
index 1f52dab188386e791f2380f2467bca8715d83957..9af22c954f2c377fa9bc7d68f825efe504132f0b 100644 (file)
@@ -17,6 +17,7 @@
 #include "outputparams.h"
 
 #include "support/docstring.h"
+#include "support/filename.h"
 
 #include <boost/utility.hpp>
 #include <boost/signal.hpp>
@@ -38,16 +39,16 @@ private:
                ///
                Error () : error_in_line(0) {}
                ///
-               Error(int line, std::string const & desc, std::string const & text)
+               Error(int line, docstring const & desc, docstring const & text)
                        : error_in_line(line),
                          error_desc(desc),
                          error_text(text) {}
                /// what line in the TeX file the error occured in
                int error_in_line;
                /// The kind of error
-               std::string error_desc;
+               docstring error_desc;
                /// The line/cmd that caused the error.
-               std::string error_text;
+               docstring error_text;
        };
 public:
        ///
@@ -57,8 +58,8 @@ public:
        ///
        Errors::const_iterator end() const { return errors.end(); }
        ///
-       void insertError(int line, std::string const & error_desc,
-                        std::string const & error_text);
+       void insertError(int line, docstring const & error_desc,
+                        docstring const & error_text);
 private:
        ///
        Errors errors;
@@ -155,7 +156,7 @@ private:
        int startscript();
 
        /// The dependency file.
-       std::string depfile;
+       support::FileName depfile;
 
        ///
        void deplog(DepTable & head);