Fixed include error after moving engine sources
authorNikolay Tischenko <niktischenko@gmail.com>
Sat, 11 Sep 2010 13:29:35 +0000 (20:29 +0700)
committerNikolay Tischenko <niktischenko@gmail.com>
Sat, 11 Sep 2010 13:29:35 +0000 (20:29 +0700)
src/mainwindow.cpp
src/player/player.h

index 20dc3a9..69ff230 100644 (file)
@@ -4,7 +4,7 @@
 #include <QMessageBox>
 #include <QFile>
 
-#include "player.h"
+#include "player/player.h"
 
 #include "library.h"
 
index 78e5ff4..201b458 100644 (file)
@@ -2,8 +2,8 @@
 #define PLAYER_H
 
 #include <QObject>
-#include "someplayer.h"
-#include "track.h"
+#include "../someplayer.h"
+#include "../track.h"
 #include <phonon/MediaObject>
 #include <phonon/AudioOutput>