changeset 296:5c5a1ce79ad5

* The main fix here is to the arguments of SVApplication -- the first one should be int& rather than int (was causing a crash! gah!) Various other tiny fixes
author Chris Cannam
date Fri, 09 Jan 2009 14:55:12 +0000
parents 75c32cc2814a
children ec08830e362e
files main/main.cpp sv.pro
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/main/main.cpp	Fri Dec 12 15:20:09 2008 +0000
+++ b/main/main.cpp	Fri Jan 09 14:55:12 2009 +0000
@@ -182,7 +182,7 @@
 class SVApplication : public QApplication
 {
 public:
-    SVApplication(int argc, char **argv) :
+    SVApplication(int &argc, char **argv) :
         QApplication(argc, argv),
         m_mainWindow(0) { }
     virtual ~SVApplication() { }
--- a/sv.pro	Fri Dec 12 15:20:09 2008 +0000
+++ b/sv.pro	Fri Jan 09 14:55:12 2009 +0000
@@ -9,7 +9,7 @@
 QT += xml network
 
 TARGET = "Sonic Visualiser"
-linux-g++:TARGET = sonic-visualiser
+linux-g++*:TARGET = sonic-visualiser
 
 ICON = icons/sv-macicon.icns
 RC_FILE = icons/sv.rc