X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=main.cpp;h=51e6100295d18efc113d825351ee4390a54eb0ba;hp=0881c184a913d3c704abffca86e50485166e2da9;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=00f6bae935837b38b0d03a5928ba8175d460413f diff --git a/main.cpp b/main.cpp index 0881c18..51e6100 100644 --- a/main.cpp +++ b/main.cpp @@ -49,6 +49,10 @@ Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin) Q_IMPORT_PLUGIN(QSvgPlugin) #endif +using std::exception; +using std::shared_ptr; +using std::string; + void usage() { fprintf(stdout, @@ -69,8 +73,8 @@ void usage() int main(int argc, char *argv[]) { int ret = 0; - std::shared_ptr context; - std::string open_file, open_file_format; + shared_ptr context; + string open_file, open_file_format; Application a(argc, argv); @@ -182,7 +186,7 @@ int main(int argc, char *argv[]) // Run the application ret = a.exec(); - } catch (std::exception e) { + } catch (exception e) { qDebug() << e.what(); }