From 3469d6007bc4d05d324b5e857e24e9f8164c98be Mon Sep 17 00:00:00 2001 From: "Frank T. Bergmann" Date: Wed, 4 Dec 2013 16:06:21 +0100 Subject: [PATCH] - added libsbml version info --- SpatialUI/spatialmainwidget.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/SpatialUI/spatialmainwidget.cpp b/SpatialUI/spatialmainwidget.cpp index 7307f78..e0dcb1e 100644 --- a/SpatialUI/spatialmainwidget.cpp +++ b/SpatialUI/spatialmainwidget.cpp @@ -260,7 +260,12 @@ bool SpatialMainWindow::saveAs() void SpatialMainWindow::about() { QMessageBox::about(this, tr("About Spatial UI"), - tr("The Spatial UI application opens a file with the SBML spatial extension and allows to simulate it using Akira's simulator.")); + tr( + "The Spatial UI application opens a file with the SBML spatial extension and allows to " + "simulate it using Akira's simulator.

" + "It uses libSBML Version: %1") + .arg(getLibSBMLDottedVersion()) + ); } void SpatialMainWindow::createActions()