File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ void PrintHelp();
2828
2929int main (int argc, char *argv[])
3030{
31+ // Application specific code
3132 base::AtExitManager exit;
3233 QApplication app (argc, argv);
3334 app.setQuitOnLastWindowClosed (false );
@@ -42,21 +43,14 @@ int main(int argc, char *argv[])
4243 cmd_line.InitFromArgv (argc, argv);
4344#endif
4445
45- // check if --help CL argument is present
4646 if (cmd_line.HasSwitch (" help" )) {
4747 PrintHelp ();
4848 return 0 ;
4949 }
50-
51- // check if --version CL argument is present
5250 if (cmd_line.HasSwitch (" version" )) {
5351 PrintVersion ();
5452 return 0 ;
5553 }
56-
57- // Application specific code
58- // ....
59- // ....
6054
6155 // Start webdriver
6256 int startError = wd_setup (argc, argv);
@@ -135,4 +129,4 @@ void PrintHelp() {
135129 << " Option from webserver config file will have" << std::endl
136130 << " more priority than commandline param" << std::endl
137131 << " that specify the same option." << std::endl;
138- }
132+ }
You can’t perform that action at this time.
0 commit comments