From 50a3124a7a1fa7596b9306445786d73e7cac2d90 Mon Sep 17 00:00:00 2001 From: Ryan Harrison Date: Thu, 7 Dec 2017 18:17:04 +0000 Subject: Change %s to %ls in calls to WideString::Format This fixes the text in validation pop ups for XFA forms. BUG=pdfium:951,pdfium:950 Change-Id: Iad46a30cae3fafcf9f73a46cb204c2de54b62b68 Reviewed-on: https://pdfium-review.googlesource.com/20490 Reviewed-by: dsinclair Commit-Queue: Ryan Harrison --- xfa/fxfa/cxfa_widgetacc.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'xfa/fxfa') diff --git a/xfa/fxfa/cxfa_widgetacc.cpp b/xfa/fxfa/cxfa_widgetacc.cpp index c55f007584..ef5904c946 100644 --- a/xfa/fxfa/cxfa_widgetacc.cpp +++ b/xfa/fxfa/cxfa_widgetacc.cpp @@ -462,7 +462,7 @@ int32_t CXFA_WidgetAcc::ProcessNullTestValidate(CXFA_ValidateData validateData, if (wsNullMsg.IsEmpty()) { wsCaptionName = GetValidateCaptionName(bVersionFlag); wsNullMsg = - WideString::Format(L"%s cannot be blank.", wsCaptionName.c_str()); + WideString::Format(L"%ls cannot be blank.", wsCaptionName.c_str()); } pAppProvider->MsgBox(wsNullMsg, wsTitle, XFA_MBICON_Status, XFA_MB_OK); return XFA_EVENTERROR_Error; @@ -474,7 +474,8 @@ int32_t CXFA_WidgetAcc::ProcessNullTestValidate(CXFA_ValidateData validateData, if (wsNullMsg.IsEmpty()) { wsCaptionName = GetValidateCaptionName(bVersionFlag); wsNullMsg = WideString::Format( - L"%s cannot be blank. To ignore validations for %s, click Ignore.", + L"%ls cannot be blank. To ignore validations for %ls, click " + L"Ignore.", wsCaptionName.c_str(), wsCaptionName.c_str()); } if (pAppProvider->MsgBox(wsNullMsg, wsTitle, XFA_MBICON_Warning, @@ -512,14 +513,14 @@ WideString CXFA_WidgetAcc::GetValidateCaptionName(bool bVersionFlag) { WideString CXFA_WidgetAcc::GetValidateMessage(bool bError, bool bVersionFlag) { WideString wsCaptionName = GetValidateCaptionName(bVersionFlag); if (bVersionFlag) - return WideString::Format(L"%s validation failed", wsCaptionName.c_str()); + return WideString::Format(L"%ls validation failed", wsCaptionName.c_str()); if (bError) { - return WideString::Format(L"The value you entered for %s is invalid.", + return WideString::Format(L"The value you entered for %ls is invalid.", wsCaptionName.c_str()); } return WideString::Format( - L"The value you entered for %s is invalid. To ignore " - L"validations for %s, click Ignore.", + L"The value you entered for %ls is invalid. To ignore " + L"validations for %ls, click Ignore.", wsCaptionName.c_str(), wsCaptionName.c_str()); } -- cgit v1.2.3