comparison main.cpp @ 105:1928f9b408e6

* Better-behaved comment dialog; avoid empty comments. Also ignore signals from closing ptys
author Chris Cannam
date Thu, 25 Nov 2010 17:21:32 +0000
parents 07405f3a428b
children 644bd31e8301
comparison
equal deleted inserted replaced
104:af314dd436d5 105:1928f9b408e6
29 29
30 // Lose our controlling terminal (so we can provide a new pty to 30 // Lose our controlling terminal (so we can provide a new pty to
31 // capture password requests) 31 // capture password requests)
32 loseControllingTerminal(); 32 loseControllingTerminal();
33 33
34 installSignalHandlers();
35
34 QApplication app(argc, argv); 36 QApplication app(argc, argv);
35 MainWindow mainWin; 37 MainWindow mainWin;
36 mainWin.show(); 38 mainWin.show();
37 return app.exec(); 39 return app.exec();
38 } 40 }