]> sigrok.org Git - pulseview.git/blobdiff - pv/application.cpp
Fix #1198 by removing the 1:1 zoom button
[pulseview.git] / pv / application.cpp
index 41f00f8cf1d918795701bb9b363b51096ed5aaeb..c16c9c4b7c757e3a4312316bb69edb668ef2615e 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.hpp"
 #include "config.h"
 
-#include <iostream>
+#include <typeinfo>
+
+#include <QDebug>
+
+#ifdef ENABLE_STACKTRACE
+#include <boost/stacktrace.hpp>
+#endif
+
+using std::exception;
 
 Application::Application(int &argc, char* argv[]) :
        QApplication(argc, argv)
@@ -36,9 +43,14 @@ 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) {
+               qDebug().nospace() << "Caught exception of type " << \
+                       typeid(e).name() << " (" << e.what() << ")";
+#ifdef ENABLE_STACKTRACE
+               throw e;
+#else
                exit(1);
+#endif
                return false;
        }
 }