Complete reformatting of the code following the KDE Frameworks formatting style
This commit is contained in:
10
src/main.cpp
10
src/main.cpp
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user