Manual tweaks.
[dcpomatic.git] / src / lib / shuffler.h
index 54e13d486fefeb3bf3390f497bc94c7b839cbba1..3eed3e4f005a1db2bfb92d80d91a07877a127c4d 100644 (file)
@@ -29,14 +29,13 @@ class Shuffler
 public:
        void clear ();
        void flush ();
-
        void video (boost::weak_ptr<Piece>, ContentVideo video);
+
        boost::signals2::signal<void (boost::weak_ptr<Piece>, ContentVideo)> Video;
 
        typedef std::pair<boost::weak_ptr<Piece>, ContentVideo> Store;
 
 private:
-
-       boost::optional<ContentVideo> _last;
        std::list<Store> _store;
+       boost::optional<ContentVideo> _last;
 };