aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-07-26 23:54:10 -0400
committerAndrew Lee <alee14498@protonmail.com>2020-07-26 23:54:10 -0400
commitc11461d9c46351afa9f479fc05d4f97901ba09ab (patch)
treeaaab753ba062abda50265d7c596650d736afd053 /main.cpp
parentff7d439298895683d73fff243f81faa38426386f (diff)
downloaderable-godot-c11461d9c46351afa9f479fc05d4f97901ba09ab.tar.gz
erable-godot-c11461d9c46351afa9f479fc05d4f97901ba09ab.tar.bz2
erable-godot-c11461d9c46351afa9f479fc05d4f97901ba09ab.zip
New icon, taglib, name change
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.cpp b/main.cpp
index e9f00e6..d255601 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,5 +1,5 @@
/*
- AleePlayer: Music player in Qt
+ Alee Audio Player: Audio player in Qt
Copyright (C) 2020 Alee Productions
This program is free software: you can redistribute it and/or modify
@@ -26,7 +26,7 @@
int main(int argc, char *argv[])
{
- qInfo() << "AleePlayer: A music player by Alee Productions. Licensed with GPL-3.0.\n";
+ qInfo() << "Alee Audio Player: A music player by Alee Productions. Licensed with GPL-3.0.\n";
qDebug() << "Creating files...";
@@ -39,7 +39,7 @@ int main(int argc, char *argv[])
QApplication a(argc, argv);
QTranslator translator;
- translator.load(QLocale(), "/home/andrew/Documents/GitHub/AleePlayer/translations/");
+ translator.load(QLocale(), "/home/andrew/Documents/GitHub/Alee Audio Player/translations/");
a.installTranslator(&translator);
Player musicPlayer;