From 676fac29c21b9ad9a91e3b94a16dba2bac13a550 Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 2 Dec 2004 00:26:32 +0000 Subject: Updated version check message box. git-svn-id: http://svn.leocad.org/trunk@365 c7d43263-9d01-0410-8a33-9dba5d9f93d6 --- win/Leocad.cpp | 4 ++-- 1 file 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."); -- cgit v1.2.3