--- a/src/main.cpp Sun Aug 11 02:58:55 2013 +0300 +++ b/src/main.cpp Sun Aug 11 03:02:50 2013 +0300 @@ -6,36 +6,36 @@ // ============================================================================= // ----------------------------------------------------------------------------- -int main( int argc, char* argv[] ) { - QApplication app( argc, argv ); - app.setApplicationName( UNIXNAME ); - app.setOrganizationName( UNIXNAME ); - app.setApplicationVersion( versionString() ); +int main (int argc, char* argv[]) { + QApplication app (argc, argv); + app.setApplicationName (UNIXNAME); + app.setOrganizationName (UNIXNAME); + app.setApplicationVersion (versionString()); - for( int i = 1; i < argc; ++i ) { + for (int i = 1; i < argc; ++i) { str arg = argv[i]; - if( arg == "--config" ) { + if (arg == "--config") { ConfigBox dlg; return dlg.exec(); } } - if( argc != 2 ) { - fprint( stderr, "Usage: %1 <demo> - Launch a demo file\n", argv[0] ); - fprint( stderr, " %1 --config - Configure " APPNAME "\n", argv[0] ); + if (argc != 2) { + fprint (stderr, "Usage: %1 <demo> - Launch a demo file\n", argv[0]); + fprint (stderr, " %1 --config - Configure " APPNAME "\n", argv[0]); return 255; } - return launchDemo( argv[1] ); + return launchDemo (argv[1]); } // ============================================================================= // ----------------------------------------------------------------------------- str versionString() { - str text = fmt( "v%1.%2", VERSION_MAJOR, VERSION_MINOR ); + str text = fmt ("v%1.%2", VERSION_MAJOR, VERSION_MINOR); #if VERSION_PATCH != 0 - text += fmt( ".%1", VERSION_PATCH ); + text += fmt (".%1", VERSION_PATCH); #endif #if BUILD_ID == BUILD_INTERNAL @@ -45,7 +45,7 @@ #elif BUILD_ID == BUILD_BETA text += "-beta"; #elif BUILD_ID == BUILD_RC - text += fmt( "-rc%1", RC_ID ); + text += fmt ("-rc%1", RC_ID); #elif BUILD_ID == BUILD_RELEASE text += "-rel"; #else @@ -53,4 +53,4 @@ #endif // BUILD_ID return text; -} \ No newline at end of file +}