X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=main.cpp;h=41f85897893069165afc325d5db4d65a414ab36e;hb=b04e278da5b0a9aa7d5e62bbb40f32f0e51f662d;hp=3d6b86e3651b3004c95d87c8d7d0c77c41024613;hpb=6fb67b27a85f19002d43b8c8498ca7d2979401b0;p=pulseview.git diff --git a/main.cpp b/main.cpp index 3d6b86e..41f8589 100644 --- a/main.cpp +++ b/main.cpp @@ -1,5 +1,5 @@ /* - * This file is part of the sigrok project. + * This file is part of the PulseView project. * * Copyright (C) 2012 Joel Holdsworth * @@ -26,7 +26,7 @@ extern "C" { #include #include -#include "mainwindow.h" +#include "pv/mainwindow.h" int main(int argc, char *argv[]) { @@ -34,7 +34,7 @@ int main(int argc, char *argv[]) /* Set some application metadata. */ QApplication::setApplicationVersion(APP_VERSION); - QApplication::setApplicationName("sigrok-qt"); + QApplication::setApplicationName("PulseView"); QApplication::setOrganizationDomain("http://www.sigrok.org"); /* Initialise libsigrok */ @@ -63,7 +63,7 @@ int main(int argc, char *argv[]) } /* Initialise the main window */ - MainWindow w; + pv::MainWindow w; w.show(); /* Run the application */