Skip to content

Commit

Permalink
Issue #881, punctuation typos fixed, thanks Jeff!
Browse files Browse the repository at this point in the history
  • Loading branch information
malcom2073 committed Dec 20, 2013
1 parent 8df02d6 commit 393a02b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1728,13 +1728,13 @@ void MainWindow::ecuResetDetected(int missedpackets)
if (!m_interrogationInProgress && !m_EcuResetPopup)
{
m_EcuResetPopup = true;
if (QMessageBox::question(this,"Error","ECU Reset detected with " + QString::number(missedpackets) + " missed packets! Would you like to reflash data? If you do not, then EMStudio will continue with an INVALID idea of ECU memory, and you will lose any changes made",QMessageBox::Yes,QMessageBox::No) == QMessageBox::Yes)
if (QMessageBox::question(this,"Error","ECU Reset detected with " + QString::number(missedpackets) + " missed packets! Would you like to reflash data? If you do not, then EMStudio will continue with an INVALID idea of ECU memory, and you will lose any changes made.",QMessageBox::Yes,QMessageBox::No) == QMessageBox::Yes)
{
emsComms->writeAllRamToRam();
}
else
{
QMessageBox::information(this,"Warning","EMStudio will now continue with a corrupt version of ECU memory. The death of your engine is on your head now");
QMessageBox::information(this,"Warning","EMStudio will now continue with a corrupt version of ECU memory. The death of your engine is on your head now.");
}
m_EcuResetPopup = false;
}
Expand Down

0 comments on commit 393a02b

Please sign in to comment.