diff main/main.cpp @ 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 d27c322b5d6e
children ec08830e362e
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() { }