--- s10k/Vago/soundWizard/soundpage4.cpp 2017/12/30 13:43:28 1092 +++ s10k/Vago/soundWizard/soundpage4.cpp 2017/12/30 13:57:32 1093 @@ -29,13 +29,13 @@ bool SoundPage4::validatePage(){ << ui->lePitch->text() << ui->leMinPitch->text() << ui->leMaxPitch->text() << ui->leWeight->text(); - if(Util::checkEmptySpaces(leContents)){ - Util::showErrorPopUp("Please fill all fields first!"); + if(Util::Validation::checkEmptySpaces(leContents)){ + Util::Dialogs::showError("Please fill all fields first!"); return false; } - if(Util::checkIfDoubles(leContents)){ - Util::showErrorPopUp("All fields must contains numbers!"); + if(Util::Validation::checkIfDoubles(leContents)){ + Util::Dialogs::showError("All fields must contains numbers!"); return false; }