Third set of 50 GPL attribution for CV-Contributors added +
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / plugin.C
index 36b10330a52fd7c6010f78fed7f42571f4fc8eb0..64b43072bb588432666fac3eeb0f9514119287a1 100644 (file)
@@ -2,6 +2,7 @@
 /*
  * CINELERRA
  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
+ * Copyright (C) 2003-2016 Cinelerra CV contributors
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -49,7 +50,7 @@ Plugin::Plugin(EDL *edl, Track *track, const char *title)
        show = 0;
        on = 1;
        gui_id = -1;
-       keyframes = new KeyFrames(edl, track);
+       keyframes = new KeyFrames(edl, this);
        keyframes->create_objects();
 }
 
@@ -66,7 +67,7 @@ Plugin::Plugin(EDL *edl, PluginSet *plugin_set, const char *title)
        show = 0;
        on = 1;
        gui_id = -1;
-       keyframes = new KeyFrames(edl, track);
+       keyframes = new KeyFrames(edl, this);
        keyframes->create_objects();
 }