X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fapplication.cpp;h=383b5c23d29737c6c14ebb537b4756a57ee83139;hp=41f00f8cf1d918795701bb9b363b51096ed5aaeb;hb=c0d2d353682c220daca3ab517ef1d30f9ca26470;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329 diff --git a/pv/application.cpp b/pv/application.cpp index 41f00f8c..383b5c23 100644 --- a/pv/application.cpp +++ b/pv/application.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include "application.hpp" @@ -23,6 +22,10 @@ #include +using std::cerr; +using std::endl; +using std::exception; + Application::Application(int &argc, char* argv[]) : QApplication(argc, argv) { @@ -36,8 +39,8 @@ bool Application::notify(QObject *receiver, QEvent *event) { try { return QApplication::notify(receiver, event); - } catch (std::exception& e) { - std::cerr << "Caught exception: " << e.what() << std::endl; + } catch (exception& e) { + cerr << "Caught exception: " << e.what() << endl; exit(1); return false; }