changeset 1526:44e09e1996a3

Fix "argument missing"
author Chris Cannam
date Tue, 10 Jan 2017 17:08:38 +0000
parents a9d46547eb4b
children 5ffe87f75931
files main/MainWindow.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/main/MainWindow.cpp	Tue Jan 10 17:04:23 2017 +0000
+++ b/main/MainWindow.cpp	Tue Jan 10 17:08:38 2017 +0000
@@ -1788,7 +1788,7 @@
     connect(action, SIGNAL(triggered()), this, SLOT(website()));
     menu->addAction(action);
     
-    action = new QAction(tr("What's &New?").arg(name), this); 
+    action = new QAction(tr("What's &New?"), this); 
     action->setStatusTip(tr("Show changes in this release of %1").arg(name)); 
     connect(action, SIGNAL(triggered()), this, SLOT(whatsNew()));
     menu->addAction(action);