Changeset 90
- Timestamp:
- Aug 13, 2012, 2:04:37 AM (10 years ago)
- Location:
- trunk/Utilities/GpsLocationConverter
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Utilities/GpsLocationConverter/GpsLocationConverter_i.c
r40 r90 7 7 8 8 /* File created by MIDL compiler version 7.00.0555 */ 9 /* at Mon Nov 14 17:34:23 20119 /* at Mon Aug 13 11:37:20 2012 10 10 */ 11 11 /* Compiler settings for GpsLocationConverter.idl: -
trunk/Utilities/GpsLocationConverter/GpsLocationConverter_i.h
r40 r90 5 5 6 6 /* File created by MIDL compiler version 7.00.0555 */ 7 /* at Mon Nov 14 17:34:23 20117 /* at Mon Aug 13 11:37:20 2012 8 8 */ 9 9 /* Compiler settings for GpsLocationConverter.idl: -
trunk/Utilities/GpsLocationConverter/MainDialog.h
r40 r90 180 180 CRoReMatchContext MatchContext; 181 181 #pragma region Google Maps 182 static CAtlStaticRegExp<> g_ExpressionA(_T("^ *(http ://)?[^/]*maps.google[^/]*/.+?") _T("ll={[\\.0-9]+},{[\\.0-9]+}"), FALSE);182 static CAtlStaticRegExp<> g_ExpressionA(_T("^ *(https?://)?[^/]*maps.google[^/]*/.+?") _T("ll={[\\.0-9]+},{[\\.0-9]+}"), FALSE); 183 183 if(g_ExpressionA.Match(sText, &MatchContext)) 184 184 { … … 191 191 #pragma endregion 192 192 #pragma region Yandex Maps 193 static CAtlStaticRegExp<> g_ExpressionB(_T("^ *(http ://)?[^/]*maps.yandex[^/]*/.+?") _T("ll={[\\.0-9]+}(,|(\\%2C)){[\\.0-9]+}"), FALSE);193 static CAtlStaticRegExp<> g_ExpressionB(_T("^ *(https?://)?[^/]*maps.yandex[^/]*/.+?") _T("ll={[\\.0-9]+}(,|(\\%2C)){[\\.0-9]+}"), FALSE); 194 194 if(g_ExpressionB.Match(sText, &MatchContext)) 195 195 {
Note: See TracChangeset
for help on using the changeset viewer.