aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-01-20 20:55:05 -0500
committerAndrew Lee <alee14498@protonmail.com>2020-01-20 20:55:05 -0500
commit0325932e429b5fb052c7e697c4ada8511154b0a0 (patch)
treeecfcc5b5f8a9fe22517973f6cab4a7ac0e8b7d00 /main.cpp
parentc48008443870d54c28f721ce4db373c6030e8720 (diff)
downloaderable-godot-0325932e429b5fb052c7e697c4ada8511154b0a0.tar.gz
erable-godot-0325932e429b5fb052c7e697c4ada8511154b0a0.tar.bz2
erable-godot-0325932e429b5fb052c7e697c4ada8511154b0a0.zip
Fixed stuff, added ALP logo and added .desktop
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 2797bd5..85f57aa 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,12 +1,12 @@
-#include <iostream>
#include "player.h"
#include <QMessageBox>
+#include <QDebug>
#include <QApplication>
int main(int argc, char *argv[])
{
- std::cout << "AleePlayer: A music player by Alee Productions. Licensed with GPL-3.0\n";
+ qInfo() << "AleePlayer: A music player by Alee Productions. Licensed with GPL-3.0\n";
QApplication a(argc, argv);
Player musicPlayer;
musicPlayer.show();