| 2 |  | #include "ui_soundpage2.h" | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 3 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 4 |  | const QStringList SoundPage2::allowedFiles = QStringList() << "*.wav" <<  "*.aif" <<  "*.aifc" << "*.afc"; | 
 
 
 
 
 
 
 
 
 | 5 | – | const QString SoundPage2::codecLocalHelpFile=GlobalVars::HelpLocation + "/XMLSNDD.html#Source_file_creation"; | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 5 |  |  | 
 
 
 
 
 
 
 
 
 
 
 | 6 | < | SoundPage2::SoundPage2(QWidget *parent) : | 
 
 
 
 
 
 
 
 
 | 6 | > | SoundPage2::SoundPage2(QString appLocation, QWidget *parent) : | 
 
 
 
 
 
 
 
 
 
 
 | 7 |  | QWizardPage(parent), | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 8 |  | ui(new Ui::soundpage2) | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 9 |  | { | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 10 |  | ui->setupUi(this); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 11 |  | this->soundTable=ui->twSoundFiles; | 
 
 
 
 
 
 
 
 | 12 | + | this->codecLocalHelpFile=appLocation+"/"+GlobalVars::HelpDir + "/XMLSNDD.html#Source_file_creation"; | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 13 |  | ui->twSoundFiles->removeColumn(2); // Only two columns | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 14 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 15 |  | ui->label->setText("<html>Add here the files you want to convert. " |