X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fapplication.cpp;h=383b5c23d29737c6c14ebb537b4756a57ee83139;hp=224cc60007dce1a3464368bedad4f77cc36dfbe0;hb=8b9056d493c657e01fcea037eff6b477c1ec9253;hpb=dac1bb975265d33e7aeb0e3fc0342260613af9d1 diff --git a/pv/application.cpp b/pv/application.cpp index 224cc600..383b5c23 100644 --- a/pv/application.cpp +++ b/pv/application.cpp @@ -14,20 +14,24 @@ * 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.h" +#include "application.hpp" #include "config.h" #include +using std::cerr; +using std::endl; +using std::exception; + Application::Application(int &argc, char* argv[]) : QApplication(argc, argv) { setApplicationVersion(PV_VERSION_STRING); setApplicationName("PulseView"); + setOrganizationName("sigrok"); setOrganizationDomain("sigrok.org"); } @@ -35,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; }