| 8 |  | ui->setupUi(this); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 9 |  | this->setTitle("Finished"); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 10 |  |  | 
 
 
 
 
 
 
 
 
 
 
 | 11 | < | //Use the global var for the depot domain so it's easier to change in the code if the domain changes | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 12 | < | ui->lbComplete->setText(ui->lbComplete->text().replace("mods.oni2.net",GlobalVars::ModsDomain)); | 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 | 11 | > | ui->lbComplete->setText("<html>" | 
 
 
 
 
 | 12 | > | "The wizard is now complete. The package will be created when you click in finish.<br/>" | 
 
 
 
 
 | 13 | > | "After that you can upload the package to <a href='http://"+GlobalVars::ModsDomain+"'>" | 
 
 
 
 
 | 14 | > | +GlobalVars::ModsDomain+"</a> to get your mod listed in the AEI." | 
 
 
 
 
 | 15 | > | "</html>"); // Don't use rich text in qtdesigner because it generates platform dependent code | 
 
 
 
 
 
 
 
 
 
 
 | 16 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 17 |  | ui->lbComplete->setOpenExternalLinks(true); //allow navigate to mod depot | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 18 |  |  |