]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsConverter.h
Adapt code to comment
[lyx.git] / src / graphics / GraphicsConverter.h
index f84b9e9b11b5e7cdcaffabff9a205948d8b8358f..2bd0003790abee7a3950a4a0441c234737f08da9 100644 (file)
@@ -17,7 +17,7 @@
 #ifndef GRAPHICSCONVERTER_H
 #define GRAPHICSCONVERTER_H
 
-#include <boost/signal.hpp>
+#include <boost/signals2.hpp>
 
 namespace lyx {
 
@@ -45,14 +45,14 @@ public:
 
        /** Connect and you'll be informed when the conversion process has
         *  finished.
-        *  If the conversion is succesful, then the listener is passed \c true.
+        *  If the conversion is successful, then the listener is passed \c true.
         */
-       typedef boost::signal<void(bool)> sig_type;
+       typedef boost::signals2::signal<void(bool)> sig_type;
        typedef sig_type::slot_type slot_type;
        ///
-       boost::signals::connection connect(slot_type const &) const;
+       boost::signals2::connection connect(slot_type const &) const;
 
-       /** If the conversion is succesful, this returns the name of the
+       /** If the conversion is successful, this returns the name of the
         *  resulting file.
         *  If conversion fails or has not been completed, however, it
         *  returns an empty string.