--- Vago/trunk/Vago/manualcommands.cpp 2016/10/30 14:42:39 1058 +++ s10k/Vago/manualcommands.cpp 2017/12/30 13:57:32 1093 @@ -44,7 +44,7 @@ void ManualCommands::executeCommand(){ QString command=ui->leManualCommand->text().trimmed(); if(command.isEmpty()){ - Util::showErrorPopUp("Please input a command first."); + Util::Dialogs::showError("Please input a command first."); return; } @@ -85,7 +85,7 @@ void ManualCommands::on_pcCopyClipboard_ void ManualCommands::on_pbClear_clicked() { - if(Util::showQuestionPopUp(this,"Clear the output?")){ + if(Util::Dialogs::showQuestion(this,"Clear the output?")){ ui->ptOutput->clear(); } }