From: Vadim Zeitlin Date: Sat, 8 Jun 2013 02:23:52 +0000 (+0000) Subject: Simplify the version information resource definition a little. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/13dec1dbebf7493e8bfea8584bf9c4b36a94849c Simplify the version information resource definition a little. Put the correct data into FileVersion and InternalName fields and remove LegalTrademarks, PrivateBuild and SpecialBuild completely as they are optional and shouldn't be present if the corresponding flags are not set, see http://msdn.microsoft.com/en-us/library/windows/desktop/aa381058(v=vs.85).aspx git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74122 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/version.rc b/src/msw/version.rc index b3214afb30..981e3bf86f 100644 --- a/src/msw/version.rc +++ b/src/msw/version.rc @@ -53,15 +53,12 @@ BEGIN VALUE "Comments", "wxWidgets cross-platform GUI framework\0" VALUE "CompanyName", "wxWidgets development team\0" VALUE "FileDescription", "wxWidgets for MSW\0" - VALUE "FileVersion", "wxWidgets Library " wxVERSION_NUM_DOT_STRING "\0" - VALUE "InternalName", "wxMSW\0" + VALUE "FileVersion", wxVERSION_NUM_DOT_STRING "\0" + VALUE "InternalName", wxSTRINGIZE(WXDLLNAME) "\0" VALUE "LegalCopyright", "Copyright © 1993-2013 wxWidgets development team\0" - VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", wxSTRINGIZE(WXDLLNAME) ".dll\0" - VALUE "PrivateBuild", "\0" VALUE "ProductName", "wxWidgets\0" VALUE "ProductVersion", wxVERSION_NUM_DOT_STRING "\0" - VALUE "SpecialBuild", "\0" END END BLOCK "VarFileInfo"