Complete reformatting of the code following the KDE Frameworks formatting style

This commit is contained in:
2020-10-16 11:50:41 +02:00
parent 5b8060d9b8
commit 23e5f549ca
29 changed files with 694 additions and 579 deletions

View File

@@ -4,13 +4,15 @@
#include "Controller.h"
int main(int argc, char** argv) {
int main(int argc, char **argv)
{
// Suppress warning about unused variable
(void)argc; (void)argv;
(void)argc;
(void)argv;
#ifdef _DEBUG
#ifdef _DEBUG
std::cout << "[Debug Mode]" << std::endl;
#endif
#endif
// Create window
Controller *mainController = new Controller();