]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeX.h
cleanup some debug messages
[lyx.git] / src / LaTeX.h
index 7675e039fd4f144668934c1eac5927acb4d47edc..c7d51e92a6e86529d5a2d3ce428772dcb254ddd1 100644 (file)
@@ -17,7 +17,7 @@
 #include "outputparams.h"
 
 #include <boost/utility.hpp>
-#include <boost/signals/signal1.hpp>
+#include <boost/signal.hpp>
 
 #include <vector>
 #include <set>
@@ -28,7 +28,8 @@ class DepTable;
 class TeXErrors {
 private:
        ///
-       struct Error {
+       class Error {
+       public:
                ///
                Error () : error_in_line(0) {}
                ///
@@ -125,7 +126,7 @@ public:
        };
 
        /// This signal emits an informative message
-       boost::signal1<void, std::string> message;
+       boost::signal<void(std::string)> message;
 
 
        /**
@@ -155,7 +156,7 @@ private:
        void deplog(DepTable & head);
 
        ///
-       bool runMakeIndex(std::string const &);
+       bool runMakeIndex(std::string const &, OutputParams const &);
 
        ///
        std::vector<Aux_Info> const scanAuxFiles(std::string const &);