summaryrefslogtreecommitdiff
path: root/fpdfsdk
diff options
context:
space:
mode:
Diffstat (limited to 'fpdfsdk')
-rw-r--r--fpdfsdk/cpdfsdk_datetime.cpp16
-rw-r--r--fpdfsdk/javascript/PublicMethods.cpp2
2 files changed, 9 insertions, 9 deletions
diff --git a/fpdfsdk/cpdfsdk_datetime.cpp b/fpdfsdk/cpdfsdk_datetime.cpp
index 47c764ce6e..d2653fca74 100644
--- a/fpdfsdk/cpdfsdk_datetime.cpp
+++ b/fpdfsdk/cpdfsdk_datetime.cpp
@@ -146,7 +146,7 @@ CPDFSDK_DateTime& CPDFSDK_DateTime::FromPDFDateTimeString(
char ch;
while (i < strLength && j < 4) {
ch = dtStr[i];
- k = k * 10 + FXSYS_toDecimalDigit(ch);
+ k = k * 10 + FXSYS_DecimalCharToInt(ch);
j++;
if (!std::isdigit(ch))
break;
@@ -160,7 +160,7 @@ CPDFSDK_DateTime& CPDFSDK_DateTime::FromPDFDateTimeString(
k = 0;
while (i < strLength && j < 2) {
ch = dtStr[i];
- k = k * 10 + FXSYS_toDecimalDigit(ch);
+ k = k * 10 + FXSYS_DecimalCharToInt(ch);
j++;
if (!std::isdigit(ch))
break;
@@ -174,7 +174,7 @@ CPDFSDK_DateTime& CPDFSDK_DateTime::FromPDFDateTimeString(
k = 0;
while (i < strLength && j < 2) {
ch = dtStr[i];
- k = k * 10 + FXSYS_toDecimalDigit(ch);
+ k = k * 10 + FXSYS_DecimalCharToInt(ch);
j++;
if (!std::isdigit(ch))
break;
@@ -188,7 +188,7 @@ CPDFSDK_DateTime& CPDFSDK_DateTime::FromPDFDateTimeString(
k = 0;
while (i < strLength && j < 2) {
ch = dtStr[i];
- k = k * 10 + FXSYS_toDecimalDigit(ch);
+ k = k * 10 + FXSYS_DecimalCharToInt(ch);
j++;
if (!std::isdigit(ch))
break;
@@ -202,7 +202,7 @@ CPDFSDK_DateTime& CPDFSDK_DateTime::FromPDFDateTimeString(
k = 0;
while (i < strLength && j < 2) {
ch = dtStr[i];
- k = k * 10 + FXSYS_toDecimalDigit(ch);
+ k = k * 10 + FXSYS_DecimalCharToInt(ch);
j++;
if (!std::isdigit(ch))
break;
@@ -216,7 +216,7 @@ CPDFSDK_DateTime& CPDFSDK_DateTime::FromPDFDateTimeString(
k = 0;
while (i < strLength && j < 2) {
ch = dtStr[i];
- k = k * 10 + FXSYS_toDecimalDigit(ch);
+ k = k * 10 + FXSYS_DecimalCharToInt(ch);
j++;
if (!std::isdigit(ch))
break;
@@ -237,7 +237,7 @@ CPDFSDK_DateTime& CPDFSDK_DateTime::FromPDFDateTimeString(
k = 0;
while (i < strLength && j < 2) {
ch = dtStr[i];
- k = k * 10 + FXSYS_toDecimalDigit(ch);
+ k = k * 10 + FXSYS_DecimalCharToInt(ch);
j++;
if (!std::isdigit(ch))
break;
@@ -253,7 +253,7 @@ CPDFSDK_DateTime& CPDFSDK_DateTime::FromPDFDateTimeString(
k = 0;
while (i < strLength && j < 2) {
ch = dtStr[i];
- k = k * 10 + FXSYS_toDecimalDigit(ch);
+ k = k * 10 + FXSYS_DecimalCharToInt(ch);
j++;
if (!std::isdigit(ch))
break;
diff --git a/fpdfsdk/javascript/PublicMethods.cpp b/fpdfsdk/javascript/PublicMethods.cpp
index 759fd91a4d..2efcacdde9 100644
--- a/fpdfsdk/javascript/PublicMethods.cpp
+++ b/fpdfsdk/javascript/PublicMethods.cpp
@@ -238,7 +238,7 @@ int CJS_PublicMethods::ParseStringInteger(const CFX_WideString& str,
if (!std::iswdigit(c))
break;
- nRet = nRet * 10 + FXSYS_toDecimalDigit(c);
+ nRet = nRet * 10 + FXSYS_DecimalCharToInt(c);
nSkip = i - nStart + 1;
if (nSkip >= nMaxStep)
break;