Revision: 4653
http://winmerge.svn.sourceforge.net/winmerge/?rev=4653&view=rev
Author: kimmov
Date: 2007-10-21 12:51:25 -0700 (Sun, 21 Oct 2007)
Log Message:
-----------
BUG: [ 1815859 ] Still considers Vista as Longhorn
Modified Paths:
--------------
branches/R2_6/Src/Changes.txt
branches/R2_6/Src/ConfigLog.cpp
Modified: branches/R2_6/Src/Changes.txt
===================================================================
--- branches/R2_6/Src/Changes.txt 2007-10-18 22:23:21 UTC (rev 4652)
+++ branches/R2_6/Src/Changes.txt 2007-10-21 19:51:25 UTC (rev 4653)
@@ -2,6 +2,10 @@
Add new items to top.
(This summarizes all changes to all files under Src, including Src\Languages.)
+2007-10-21 Kimmo
+ BUG: [ 1815859 ] Still considers Vista as Longhorn
+ Src: ConfigLog.cpp
+
2007-10-11 Kimmo
PATCH: [ 1810171 ] MergeChineseTraditional.rc of 2.6.12 updated
Submitted by Wei-cheng
Modified: branches/R2_6/Src/ConfigLog.cpp
===================================================================
--- branches/R2_6/Src/ConfigLog.cpp 2007-10-18 22:23:21 UTC (rev 4652)
+++ branches/R2_6/Src/ConfigLog.cpp 2007-10-21 19:51:25 UTC (rev 4653)
@@ -651,7 +651,7 @@
else if ( osvi.dwMajorVersion <= 4 )
sVersion = _T("Microsoft Windows NT ");
else if ( osvi.dwMajorVersion == 6 && osvi.dwMinorVersion == 0 )
- sVersion = _T("Microsoft Windows Longhorn ");
+ sVersion = _T("Microsoft Windows Vista ");
else
sVersion.Format(_T("[? WindowsNT %d.%d] "),
osvi.dwMajorVersion, osvi.dwMinorVersion);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|