]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsImage.h
Use UTF8 for LaTeX export.
[lyx.git] / src / graphics / GraphicsImage.h
index 00c42f63aaa34b047a4edaea811b9de4592d4d0e..5364aa1dbb7263c3e3321f5514cf2addbb4fcc21 100644 (file)
@@ -26,7 +26,7 @@
 
 #include <boost/function.hpp>
 #include <boost/shared_ptr.hpp>
-#include <boost/signals/signal1.hpp>
+#include <boost/signal.hpp>
 
 #include <vector>
 #include <utility>
@@ -45,9 +45,9 @@ public:
        ///
        static boost::function<ImagePtr()> newImage;
 
-       /// Return the list of loadable formats.
-       typedef std::vector<std::string> FormatList;
        ///
+       typedef std::vector<std::string> FormatList;
+       /// Return the list of loadable formats.
        static boost::function<FormatList()> loadableFormats;
 
        ///
@@ -66,9 +66,9 @@ public:
        bool isDrawable() const;
 
        /** At the end of the loading process inform the outside world
-        *  by emitting a signal.
+        *  by emitting a signal
         */
-       typedef boost::signal1<void, bool> SignalType;
+       typedef boost::signal<void(bool)> SignalType;
        ///
        SignalType finishedLoading;