From 83ad41d9fdf7db1bc23cac38ce2343b349a80c85 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Tue, 19 Feb 2019 10:42:02 -0800 Subject: [PATCH] added memory includes --- oliveglobal.cpp | 2 +- oliveglobal.h | 1 + playback/cacher.h | 1 + project/clip.h | 1 + project/effect.h | 1 + project/footage.h | 1 + project/marker.h | 1 + project/sequence.h | 1 + 8 files changed, 8 insertions(+), 1 deletion(-) diff --git a/oliveglobal.cpp b/oliveglobal.cpp index 7cd63139e..d3e3b56cc 100644 --- a/oliveglobal.cpp +++ b/oliveglobal.cpp @@ -256,7 +256,7 @@ void OliveGlobal::finished_initialize() { } else { // if we are not loading a project on launch and are running a release build, open the demo notice dialog #ifndef QT_DEBUG - DemoNotice* d = new DemoNotice(Olive::MainWindow); + DemoNotice* d = new DemoNotice(olive::MainWindow); connect(d, SIGNAL(finished(int)), d, SLOT(deleteLater())); d->open(); #endif diff --git a/oliveglobal.h b/oliveglobal.h index 1e43852c7..da274565c 100644 --- a/oliveglobal.h +++ b/oliveglobal.h @@ -21,6 +21,7 @@ #ifndef OLIVEGLOBAL_H #define OLIVEGLOBAL_H +#include #include "project/undo.h" #include diff --git a/playback/cacher.h b/playback/cacher.h index 02d58fd75..e0e9d2be6 100644 --- a/playback/cacher.h +++ b/playback/cacher.h @@ -21,6 +21,7 @@ #ifndef CACHER_H #define CACHER_H +#include #include #include diff --git a/project/clip.h b/project/clip.h index d9c0b9458..931b0a4b9 100644 --- a/project/clip.h +++ b/project/clip.h @@ -21,6 +21,7 @@ #ifndef CLIP_H #define CLIP_H +#include #include #include #include diff --git a/project/effect.h b/project/effect.h index b3cb88990..0b83b7f3b 100644 --- a/project/effect.h +++ b/project/effect.h @@ -21,6 +21,7 @@ #ifndef EFFECT_H #define EFFECT_H +#include #include #include #include diff --git a/project/footage.h b/project/footage.h index 979a3af98..3f170d302 100644 --- a/project/footage.h +++ b/project/footage.h @@ -21,6 +21,7 @@ #ifndef FOOTAGE_H #define FOOTAGE_H +#include #include #include #include diff --git a/project/marker.h b/project/marker.h index 5678660d1..c2f7fe727 100644 --- a/project/marker.h +++ b/project/marker.h @@ -25,6 +25,7 @@ #include #include +#include class Sequence; using SequencePtr = std::shared_ptr; diff --git a/project/sequence.h b/project/sequence.h index 1053118cc..f59a34eb2 100644 --- a/project/sequence.h +++ b/project/sequence.h @@ -21,6 +21,7 @@ #ifndef SEQUENCE_H #define SEQUENCE_H +#include #include #include "project/clip.h"