]> git.sesse.net Git - kdenlive/blobdiff - src/docclipbase.cpp
Eliminate some signed comparison warnings
[kdenlive] / src / docclipbase.cpp
index 5f381bbb741833997c19c1d6ba889cd8969cbaba..be815389f5ce8794f902af2f2d4227ab812f48ef 100644 (file)
@@ -53,7 +53,7 @@ DocClipBase::DocClipBase(ClipManager *clipManager, QDomElement xml, const QStrin
     m_clipType = (CLIPTYPE) type;
 
     QDomNamedNodeMap attributes = xml.attributes();
-    for (unsigned int i = 0; i < attributes.count(); i++) {
+    for (int i = 0; i < attributes.count(); i++) {
         m_properties.insert(attributes.item(i).nodeName(), attributes.item(i).nodeValue());
     }
 
@@ -288,7 +288,7 @@ QList < GenTime > DocClipBase::snapMarkers() const
 {
     QList < GenTime > markers;
 
-    for (uint count = 0; count < m_snapMarkers.count(); ++count) {
+    for (int count = 0; count < m_snapMarkers.count(); ++count) {
         markers.append(m_snapMarkers[count].time());
     }