| Index: xfa/fxfa/parser/xfa_localevalue.cpp
|
| diff --git a/xfa/fxfa/parser/xfa_localevalue.cpp b/xfa/fxfa/parser/xfa_localevalue.cpp
|
| index e36595d8408baa96f2643341bbafaee399b87463..6dd83774658cf94b960f36e8a3e57e1210e81fc4 100644
|
| --- a/xfa/fxfa/parser/xfa_localevalue.cpp
|
| +++ b/xfa/fxfa/parser/xfa_localevalue.cpp
|
| @@ -142,7 +142,7 @@ FX_BOOL CXFA_LocaleValue::ValidateValue(const CFX_WideString& wsValue,
|
| }
|
| case FX_LOCALECATEGORY_Text:
|
| bRet = pFormat->ParseText(wsValue, wsFormat, wsOutput);
|
| - wsOutput.Empty();
|
| + wsOutput.clear();
|
| if (!bRet) {
|
| bRet = pFormat->FormatText(wsValue, wsFormat, wsOutput);
|
| }
|
| @@ -464,7 +464,7 @@ FX_BOOL CXFA_LocaleValue::FormatPatterns(CFX_WideString& wsResult,
|
| const CFX_WideString& wsFormat,
|
| IFX_Locale* pLocale,
|
| XFA_VALUEPICTURE eValueType) const {
|
| - wsResult.Empty();
|
| + wsResult.clear();
|
| FX_BOOL bRet = FALSE;
|
|
|
| CFX_FormatString* pFormat = nullptr;
|
| @@ -492,7 +492,7 @@ FX_BOOL CXFA_LocaleValue::FormatSinglePattern(
|
| if (pLocale) {
|
| m_pLocaleMgr->SetDefLocale(pLocale);
|
| }
|
| - wsResult.Empty();
|
| + wsResult.clear();
|
| FX_BOOL bRet = FALSE;
|
|
|
| CFX_FormatString* pFormat = nullptr;
|
| @@ -822,7 +822,7 @@ FX_BOOL CXFA_LocaleValue::ParsePatternValue(const CFX_WideString& wsValue,
|
| case FX_LOCALECATEGORY_Null:
|
| bRet = pFormat->ParseNull(wsValue, wsFormat);
|
| if (bRet) {
|
| - m_wsValue.Empty();
|
| + m_wsValue.clear();
|
| }
|
| break;
|
| case FX_LOCALECATEGORY_Zero:
|
|
|