]> git.sesse.net Git - kdenlive/blobdiff - src/keyframeedit.cpp
Use char for single character [krazy 1-44] by Mikko Rapeli
[kdenlive] / src / keyframeedit.cpp
index 0bb08a2907dfc56acfc155f6498daba84f33aa2a..8014cd0e54364264e34173a7ebeb95a95691366a 100644 (file)
@@ -126,7 +126,7 @@ void KeyframeEdit::addParameter(QDomElement e, int activeKeyframe)
         doubleparam->setInTimelineProperty(true);
     }
 
-    QStringList frames = e.attribute("keyframes").split(";", QString::SkipEmptyParts);
+    QStringList frames = e.attribute("keyframes").split(';', QString::SkipEmptyParts);
     for (int i = 0; i < frames.count(); i++) {
         int frame = frames.at(i).section(':', 0, 0).toInt();
         bool found = false;