[mapguide-commits] r1210 - trunk/MgDev/Common/MapGuideCommon

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Tue Mar 13 15:24:33 EDT 2007


Author: brucedechant
Date: 2007-03-13 15:24:33 -0400 (Tue, 13 Mar 2007)
New Revision: 1210

Modified:
   trunk/MgDev/Common/MapGuideCommon/MapGuideCommon.h
Log:
Fix comment typo.

Modified: trunk/MgDev/Common/MapGuideCommon/MapGuideCommon.h
===================================================================
--- trunk/MgDev/Common/MapGuideCommon/MapGuideCommon.h	2007-03-13 19:23:17 UTC (rev 1209)
+++ trunk/MgDev/Common/MapGuideCommon/MapGuideCommon.h	2007-03-13 19:24:33 UTC (rev 1210)
@@ -32,14 +32,14 @@
 #endif
 
 // This define extracts the operation version
-// 0x00XXYYZZ where XX = Major, YY = Minor nad ZZ = Phase
+// 0x00XXYYZZ where XX = Major, YY = Minor and ZZ = Phase
 #define EXTRACT_VERSION(Version, Major, Minor, Phase) \
     Major = (Version & 0x00ff0000) >> 16; \
     Minor = (Version & 0x0000ff00) >> 8; \
     Phase = (Version & 0x000000ff);
 
 // This define builds the operation version
-// 0x00XXYYZZ where XX = Major, YY = Minor nad ZZ = Phase
+// 0x00XXYYZZ where XX = Major, YY = Minor and ZZ = Phase
 #define BUILD_VERSION(Major, Minor, Phase) ((Major << 16) + (Minor << 8) + Phase)
 
 #define VERSION_NO_PHASE(Version) (Version & 0x00ffff00)



More information about the mapguide-commits mailing list