comparison main/MainWindow.cpp @ 674:17fbb120222b

Remove duplicate shortcut
author Chris Cannam
date Thu, 05 Dec 2013 10:56:21 +0000
parents 17fe7e0c23a1
children 60d3575f8016 7f7fba33b7de
comparison
equal deleted inserted replaced
673:e6faa02020f0 674:17fbb120222b
527 action->setStatusTip(tr("Export selection as an audio file")); 527 action->setStatusTip(tr("Export selection as an audio file"));
528 connect(action, SIGNAL(triggered()), this, SLOT(exportAudio())); 528 connect(action, SIGNAL(triggered()), this, SLOT(exportAudio()));
529 connect(this, SIGNAL(canExportAudio(bool)), action, SLOT(setEnabled(bool))); 529 connect(this, SIGNAL(canExportAudio(bool)), action, SLOT(setEnabled(bool)));
530 menu->addAction(action); 530 menu->addAction(action);
531 531
532 action = new QAction(tr("&Export Audio Data..."), this); 532 action = new QAction(tr("Export Audio Data..."), this);
533 action->setStatusTip(tr("Export audio from selection into a data file")); 533 action->setStatusTip(tr("Export audio from selection into a data file"));
534 connect(action, SIGNAL(triggered()), this, SLOT(exportAudioData())); 534 connect(action, SIGNAL(triggered()), this, SLOT(exportAudioData()));
535 connect(this, SIGNAL(canExportAudio(bool)), action, SLOT(setEnabled(bool))); 535 connect(this, SIGNAL(canExportAudio(bool)), action, SLOT(setEnabled(bool)));
536 menu->addAction(action); 536 menu->addAction(action);
537 537