summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleo2004-12-02 00:26:32 +0000
committerleo2004-12-02 00:26:32 +0000
commit676fac29c21b9ad9a91e3b94a16dba2bac13a550 (patch)
tree782b4ba07aa43a79c4f9cf0d9cc0881e1742a8ed
parentf08874bc1384933782bbbe384746ea9caf9d48af (diff)
Updated version check message box.
git-svn-id: http://svn.leocad.org/trunk@365 c7d43263-9d01-0410-8a33-9dba5d9f93d6
-rw-r--r--win/Leocad.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/Leocad.cpp b/win/Leocad.cpp
index 8bbcc80..1d46d2b 100644
--- a/win/Leocad.cpp
+++ b/win/Leocad.cpp
@@ -315,14 +315,14 @@ void CCADApp::OnHelpUpdates()
if (ver > LC_VERSION_MAJOR + (float)LC_VERSION_MINOR/100 + (float)LC_VERSION_PATCH/1000)
str.Format("There's a newer version of LeoCAD available for download (%0.3f).\n\n", ver);
else
- str = "You are using the latest version of LeoCAD (" LC_VERSION ").\n";
+ str = "You are using the latest version of LeoCAD.\n\n";
if (lib > project->GetPiecesLibrary ()->GetPieceCount ())
str += "There are new pieces available.\n";
else
str += "There are no new pieces available at this time.\n";
- AfxMessageBox(str);
+ AfxMessageBox(str, MB_OK | MB_ICONINFORMATION);
}
else
AfxMessageBox("Unknown file information.");