Update of /cvsroot/bidwatcher/bidwatcher
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13789
Modified Files:
Tag: STABLE_1_3
helpers.cpp
Log Message:
fixed hex encoded entities: need to be octal encoded
Index: helpers.cpp
===================================================================
RCS file: /cvsroot/bidwatcher/bidwatcher/Attic/helpers.cpp,v
retrieving revision 1.90.2.67
retrieving revision 1.90.2.68
diff -u -d -r1.90.2.67 -r1.90.2.68
--- helpers.cpp 27 Jun 2006 08:53:30 -0000 1.90.2.67
+++ helpers.cpp 27 Jun 2006 09:04:01 -0000 1.90.2.68
@@ -273,9 +273,9 @@
if (!strcmp(temp, "gt") || !strcmp(temp, "#62"))
return '>';
if (!strcmp(temp, "#8217") || !strcmp(temp, "#146") ||
- !strcmp(temp, "#B4") || !strcmp(temp, "acute"))
+ !strcmp(temp, "#180") || !strcmp(temp, "acute"))
return '\'';
- if (!strcmp(temp, "#A7") || !strcmp(temp, "sect"))
+ if (!strcmp(temp, "#167") || !strcmp(temp, "sect"))
return 0xA7; // '§';
if (!strcmp(temp, "pound"))
return 0xA3; // '£';
|