From 0c499ec556855f17c01de9cc50fa597de8c0f22f Mon Sep 17 00:00:00 2001 From: Brandon King Date: Sat, 14 Oct 2006 00:28:01 +0000 Subject: [PATCH] Fix for ticket:160 * gcc 4.0.3 didn't like assing 0 to a MussaRef, removed default value based on Diane's suggestion. That did the trick. --- qui/MussaWindow.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qui/MussaWindow.hpp b/qui/MussaWindow.hpp index a64c46f..a36d1b9 100644 --- a/qui/MussaWindow.hpp +++ b/qui/MussaWindow.hpp @@ -31,7 +31,7 @@ class MussaWindow : public QMainWindow Q_OBJECT public: - MussaWindow(MussaRef analysis=0, QWidget *parent=0); + MussaWindow(MussaRef analysis, QWidget *parent=0); //! reset any attached window void clear(); -- 2.30.2