| 1 |  | #include "soundwizard.h" | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 2 |  |  | 
 
 
 
 
 
 
 
 
 
 
 | 3 | < | SoundWizard::SoundWizard(QString appDir, QString workspaceWizardLocation, QSettings *vagoSettings, Logger *myLogger, QHash<QString, QString> *commandMap) | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 4 | < | :AbstractWizard(appDir, workspaceWizardLocation, vagoSettings, myLogger, true) | 
 
 
 
 
 
 
 
 
 | 3 | > | SoundWizard::SoundWizard(QString appDir, QString workspaceWizardLocation, QSettings *vagoSettings, QHash<QString, QString> *commandMap) | 
 
 
 
 
 | 4 | > | :AbstractWizard(appDir, workspaceWizardLocation, vagoSettings, true) | 
 
 
 
 
 
 
 
 
 
 
 | 5 |  | { | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 6 |  | this->appDir=appDir; | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 7 |  | this->soundsLocation=this->workspaceWizardLocation+"/Sounds"; | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 13 |  | SoundPage3 *page3 = new SoundPage3(); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 14 |  | SoundPage4 *page4 = new SoundPage4(); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 15 |  | SoundPage5 *page5 = new SoundPage5(); | 
 
 
 
 
 
 
 
 
 
 
 | 16 | < | SoundPageFinal *pageFinal = new SoundPageFinal(this->appDir, this->soundsLocation,page2->soundTable,this->myLogger, this->commandMap); | 
 
 
 
 
 
 
 
 
 | 16 | > | SoundPageFinal *pageFinal = new SoundPageFinal(this->appDir, this->soundsLocation,page2->soundTable, this->commandMap); | 
 
 
 
 
 
 
 
 
 
 
 | 17 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 18 |  | this->myWizard.addPage | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 19 |  | ( |