aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 784d95d..7968eff 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,11 +1,13 @@
+#include <iostream>
#include "player.h"
#include <QApplication>
int main(int argc, char *argv[])
{
+ std::cout << "Starting AleePlayer...\n";
QApplication a(argc, argv);
- Player w;
- w.show();
+ Player musicPlayer;
+ musicPlayer.show();
return a.exec();
}