--- Vago/trunk/Vago/soundWizard/soundpagefinal.cpp 2013/03/31 19:02:16 771 +++ Vago/trunk/Vago/soundWizard/soundpagefinal.cpp 2013/04/13 13:44:29 815 @@ -1,7 +1,7 @@ #include "soundpagefinal.h" #include "ui_soundpagefinal.h" -SoundPageFinal::SoundPageFinal(QString soundsLocation, DropTableWidget *page2Table, Logger *myLogger, QHash *commandMap, QWidget *parent) : +SoundPageFinal::SoundPageFinal(QString AppDir, QString soundsLocation, DropTableWidget *page2Table, Logger *myLogger, QHash *commandMap, QWidget *parent) : QWizardPage(parent), ui(new Ui::soundpagefinal) { @@ -13,8 +13,13 @@ SoundPageFinal::SoundPageFinal(QString s this->xmlCommands = new QStringList(); this->oniSplitCommands = new QStringList(); - this->myXmlProcessor = new XmlProcessor(this->myLogger,this->xmlCommands); - this->myConverter = new Converter(this->myLogger,this->oniSplitCommands); + this->myXmlProcessor = new XmlProcessor(AppDir, this->myLogger,this->xmlCommands); + this->myConverter = new Converter(AppDir, this->myLogger,this->oniSplitCommands); + + ui->lbComplete->setText("The wizard is now complete. The sounds have been converted. " + "You can view all converted files clicking here.
" + "
Click restart to create more sounds from the wizard beggining," + "otherwise click finish."); // Don't use rich text in qtdesigner because it generates platform dependent code connectSlots(); }