No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / player_subtitles.h
index 46994ea3bd4f7924576f23b00c495ce1d23887ac..93a0d5378775c30a769f8d01d5b9a987b5546a97 100644 (file)
@@ -20,8 +20,8 @@
 #ifndef DCPOMATIC_PLAYER_SUBTITLES_H
 #define DCPOMATIC_PLAYER_SUBTITLES_H
 
-#include <dcp/subtitle_string.h>
 #include "image_subtitle.h"
+#include <dcp/subtitle_string.h>
 
 class PlayerSubtitles
 {
@@ -30,13 +30,13 @@ public:
                : from (f)
                , to (t)
        {}
-       
+
        DCPTime from;
        DCPTime to;
 
        /** ImageSubtitles, with their rectangles transformed as specified by their content */
        std::list<ImageSubtitle> image;
-       std::list<dcp::SubtitleString> text; 
+       std::list<dcp::SubtitleString> text;
 };
 
 #endif