]> sigrok.org Git - pulseview.git/blobdiff - pv/application.cpp
Don't use AUTORCC, this would require cmake >= 3.0.
[pulseview.git] / pv / application.cpp
index 66991dd985b3b5cd3d0765926784e5ec7e34847f..383b5c23d29737c6c14ebb537b4756a57ee83139 100644 (file)
  * 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 <http://www.gnu.org/licenses/>.
  */
 
-#include "application.h"
+#include "application.hpp"
 #include "config.h"
 
 #include <iostream>
 
+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;
        }