Fix thinko.
authorCarl Hetherington <cth@carlh.net>
Mon, 3 Oct 2016 22:36:23 +0000 (23:36 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 3 Oct 2016 22:36:23 +0000 (23:36 +0100)
src/lib/video_content.cc

index ed14026087beacc25ac4e71df52f58bb97417df1..9bb065babc3506c6751c4029b5c5fd43f59ca8e0 100644 (file)
@@ -457,7 +457,7 @@ void
 VideoContent::add_properties (list<UserProperty>& p) const
 {
        p.push_back (UserProperty (UserProperty::VIDEO, _("Length"), length (), _("video frames")));
-       p.push_back (UserProperty (UserProperty::VIDEO, _("Size"), size().width + "x" + size().height));
+       p.push_back (UserProperty (UserProperty::VIDEO, _("Size"), String::compose ("%1x%2", size().width, size().height)));
 }
 
 void