diff --git a/app/main.cpp b/app/main.cpp
index 30cbf31..dea6d38 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -49,15 +49,15 @@ int main(int argc, char *argv[])
if (argc>1 && (!strcmp(argv[1],"-h") || !strcmp(argv[1],"--help"))) {
QTextStream cout(stdout, QIODevice::WriteOnly);
- cout << "Usage: " << argv[0] << " [--default-settings] [--workdir
] [--program ] [-p|--profile ] [--fullscreen] [-h|--help]" << endl;
- cout << " --default-settings Run cool-retro-term with the default settings" << endl;
- cout << " --workdir Change working directory to 'dir'" << endl;
- cout << " -e Command to execute. This option will catch all following arguments, so use it as the last option." << endl;
- cout << " -T Set window title to 'title'." << endl;
- cout << " --fullscreen Run cool-retro-term in fullscreen." << endl;
- cout << " -p|--profile Run cool-retro-term with the given profile." << endl;
- cout << " -h|--help Print this help." << endl;
- cout << " --verbose Print additional information such as profiles and settings." << endl;
+ cout << "Usage: " << argv[0] << " [--default-settings] [--workdir ] [--program ] [-p|--profile ] [--fullscreen] [-h|--help]" << '\n';
+ cout << " --default-settings Run cool-retro-term with the default settings" << '\n';
+ cout << " --workdir Change working directory to 'dir'" << '\n';
+ cout << " -e Command to execute. This option will catch all following arguments, so use it as the last option." << '\n';
+ cout << " -T Set window title to 'title'." << '\n';
+ cout << " --fullscreen Run cool-retro-term in fullscreen." << '\n';
+ cout << " -p|--profile Run cool-retro-term with the given profile." << '\n';
+ cout << " -h|--help Print this help." << '\n';
+ cout << " --verbose Print additional information such as profiles and settings." << '\n';
return 0;
}
@@ -65,7 +65,7 @@ int main(int argc, char *argv[])
if (argc>1 && (!strcmp(argv[1],"-v") || !strcmp(argv[1],"--version"))) {
QTextStream cout(stdout, QIODevice::WriteOnly);
- cout << "cool-retro-term " << appVersion << endl;
+ cout << "cool-retro-term " << appVersion << '\n';
return 0;
}