]> git.sesse.net Git - kdenlive/blobdiff - src/definitions.cpp
Trying to fix a bug with the clip move undo command. No success.
[kdenlive] / src / definitions.cpp
diff --git a/src/definitions.cpp b/src/definitions.cpp
new file mode 100644 (file)
index 0000000..2112faf
--- /dev/null
@@ -0,0 +1,12 @@
+#include "definitions.h"
+
+QDebug operator << (QDebug qd, const ItemInfo &info)
+{
+    qd << "ItemInfo " << &info;
+    qd << "\tTrack" << info.track;
+    qd << "\tStart pos: " << info.startPos.toString();
+    qd << "\tEnd pos: " << info.endPos.toString();
+    qd << "\tCrop start: " << info.cropStart.toString();
+    qd << "\tCrop duration: " << info.cropDuration.toString();
+    return qd.maybeSpace();
+}