Skip to content

Commit

Permalink
- Fixed error message grammar in OMEdit.
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@9044 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
perost committed May 19, 2011
1 parent 5c517af commit c8ea940
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OMEdit/OMEditGUI/OMCProxy.cpp
Expand Up @@ -298,7 +298,7 @@ void OMCProxy::sendCommand(const QString expression)
if (mDisplayErrors)
{
QMessageBox::critical(mpParentMainWindow, Helper::applicationName + " - Error",
QString("Communication with ").append(Helper::applicationName).append(" server has lost.")
QString("Communication with the ").append(Helper::applicationName).append(" server has been lost.")
.append("\n\n").append(Helper::applicationName).append(" will close."), "OK");
restartApplication();
}
Expand Down Expand Up @@ -374,7 +374,7 @@ void OMCProxy::catchException()
if (mDisplayErrors)
{
QMessageBox::critical(mpParentMainWindow, Helper::applicationName + " - Error",
QString("Communication with ").append(Helper::applicationName).append(" server has lost.")
QString("Communication with the ").append(Helper::applicationName).append(" server has been lost.")
.append("\n\n").append(Helper::applicationName).append(" will restart."), "OK");

restartApplication();
Expand Down

0 comments on commit c8ea940

Please sign in to comment.