comparison main/MainWindow.cpp @ 679:dbd9bd36a390

Merge
author Chris Cannam
date Thu, 05 Dec 2013 12:42:13 +0000
parents 17fbb120222b
children 60d3575f8016 7f7fba33b7de
comparison
equal deleted inserted replaced
678:c32abd18048b 679:dbd9bd36a390
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