Skip to content

Commit

Permalink
Examples: Update include paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc committed Oct 18, 2020
1 parent fcebbea commit 68ed260
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/Example.cpp
Expand Up @@ -31,8 +31,8 @@
#include <fstream>
#include <iostream>
#include <memory>
#include "../../include/OpenShot.h"
#include "../../include/CrashHandler.h"
#include "OpenShot.h"
#include "CrashHandler.h"

using namespace openshot;

Expand Down
4 changes: 2 additions & 2 deletions examples/ExampleHtml.cpp
Expand Up @@ -35,8 +35,8 @@
#include <QGuiApplication>
#include <QTimer>

#include "../../include/OpenShot.h"
#include "../../include/CrashHandler.h"
#include "OpenShot.h"
#include "CrashHandler.h"

using namespace openshot;

Expand Down
4 changes: 3 additions & 1 deletion examples/qt-demo/main.cpp
Expand Up @@ -28,7 +28,9 @@
* along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
*/

#include "../../../include/Qt/PlayerDemo.h"
#include "Qt/PlayerDemo.h"

#include <QApplication>

int main(int argc, char *argv[])
{
Expand Down

0 comments on commit 68ed260

Please sign in to comment.