We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 504fd0e commit edf85ddCopy full SHA for edf85dd
include/KeyFrame.h
@@ -68,7 +68,7 @@ namespace openshot {
68
public:
69
70
/// Default constructor for the Keyframe class
71
- Keyframe();
+ Keyframe() = default;
72
73
/// Constructor which sets the default point & coordinate at X=1
74
Keyframe(double value);
src/KeyFrame.cpp
@@ -42,10 +42,6 @@ Keyframe::Keyframe(double value) {
42
AddPoint(Point(value));
43
}
44
45
-// Keyframe constructor
46
-Keyframe::Keyframe() {
47
-}
48
-
49
// Add a new point on the key-frame. Each point has a primary coordinate,
50
// a left handle, and a right handle.
51
void Keyframe::AddPoint(Point p) {
0 commit comments