]> git.sesse.net Git - kdenlive/blobdiff - src/clipproperties.cpp
Eliminate some signed comparison warnings
[kdenlive] / src / clipproperties.cpp
index 02879b5b70c466c08bba5b6648d9f7983de072d9..a79524337d9d9178b6d4a3bb97645c25c4cd2a09 100644 (file)
@@ -268,7 +268,7 @@ void ClipProperties::slotFillMarkersList()
 {
     m_view.markers_list->clear();
     QList < CommentedTime > marks = m_clip->commentedSnapMarkers();
-    for (uint count = 0; count < marks.count(); ++count) {
+    for (int count = 0; count < marks.count(); ++count) {
         QString time = m_tc.getTimecode(marks[count].time(), m_tc.fps());
         QStringList itemtext;
         itemtext << time << marks[count].comment();