comparison main/MainWindow.cpp @ 1526:44e09e1996a3

Fix "argument missing"
author Chris Cannam
date Tue, 10 Jan 2017 17:08:38 +0000
parents f016667b4adb
children 28d80ef79473
comparison
equal deleted inserted replaced
1525:a9d46547eb4b 1526:44e09e1996a3
1786 action = new QAction(tr("%1 on the &Web").arg(name), this); 1786 action = new QAction(tr("%1 on the &Web").arg(name), this);
1787 action->setStatusTip(tr("Open the %1 website").arg(name)); 1787 action->setStatusTip(tr("Open the %1 website").arg(name));
1788 connect(action, SIGNAL(triggered()), this, SLOT(website())); 1788 connect(action, SIGNAL(triggered()), this, SLOT(website()));
1789 menu->addAction(action); 1789 menu->addAction(action);
1790 1790
1791 action = new QAction(tr("What's &New?").arg(name), this); 1791 action = new QAction(tr("What's &New?"), this);
1792 action->setStatusTip(tr("Show changes in this release of %1").arg(name)); 1792 action->setStatusTip(tr("Show changes in this release of %1").arg(name));
1793 connect(action, SIGNAL(triggered()), this, SLOT(whatsNew())); 1793 connect(action, SIGNAL(triggered()), this, SLOT(whatsNew()));
1794 menu->addAction(action); 1794 menu->addAction(action);
1795 1795
1796 action = new QAction(tr("&About %1").arg(name), this); 1796 action = new QAction(tr("&About %1").arg(name), this);