Skip to content

Commit

Permalink
Fixed minor bug in notebook.cpp introduced in new message window stri…
Browse files Browse the repository at this point in the history
…ng concatenation.

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@5921 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Ariel Liebman committed Aug 13, 2010
1 parent 6c6cbd6 commit 7bee92d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMNotebook/OMNotebookQT4/notebook.cpp
Expand Up @@ -2628,7 +2628,7 @@ namespace IAEX
const char* dateStr = __DATE__; // "Mmm dd yyyy", so dateStr+7 = "yyyy"
QString version = OmcInteractiveEnvironment::OMCVersion();
QString abouttext = QString("OMNotebook version 3.0 (for OpenModelica ") + version +
QString(")\r\n") + QString("Copyright 2004-") + QString(dateStr+7) + QString(", PELAB, Link") + QString(QChar(246, 0)) +"ping University\r\n\r\n") +
QString(")\r\n") + QString("Copyright 2004-") + QString(dateStr+7) + QString(", PELAB, Link") + QString(QChar(246, 0)) +QString("ping University\r\n\r\n") +
QString("Created by Ingemar Axelsson (2004-2005), Anders Fernstr" + QString(QChar(246, 0)) +"m (2005-2006) and Henrik Eriksson (2006-2007) as part of their final theses.");

QMessageBox::about( this, "OMNotebook", abouttext );
Expand Down

0 comments on commit 7bee92d

Please sign in to comment.