Remove unused method (identical in parent class).
authorCarl Hetherington <cth@carlh.net>
Fri, 6 Nov 2015 01:06:05 +0000 (01:06 +0000)
committerCarl Hetherington <cth@carlh.net>
Fri, 6 Nov 2015 01:06:05 +0000 (01:06 +0000)
src/lib/image_content.cc
src/lib/image_content.h

index d62954f40f9cda054248ebf0ac02f1999b578461..dc1efa965744ca7fcbe238fcce2183e51cda57e0 100644 (file)
@@ -151,21 +151,6 @@ ImageContent::still () const
        return number_of_paths() == 1;
 }
 
-void
-ImageContent::set_video_frame_rate (float r)
-{
-       {
-               boost::mutex::scoped_lock lm (_mutex);
-               if (_video_frame_rate == r) {
-                       return;
-               }
-
-               _video_frame_rate = r;
-       }
-
-       signal_changed (VideoContentProperty::VIDEO_FRAME_RATE);
-}
-
 void
 ImageContent::set_default_colour_conversion ()
 {
index 67ea466dfb146f79537d58d5c64aeccdc90b2444..a4968ea8b753937f11260c29c2a0c3edccf3065f 100644 (file)
@@ -45,7 +45,6 @@ public:
 
        void set_video_length (Frame);
        bool still () const;
-       void set_video_frame_rate (float);
 };
 
 #endif