diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-02 07:42:25 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-02 07:42:25 -0700 |
commit | 2235b7b52e2cedea9b5d4822de9548994362ca96 (patch) | |
tree | 69f8857aeab295ef7722ba139c987ba21ed66337 /xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp | |
parent | a31d4a90f3446df76d8d3ffa0b441db0ad4623af (diff) | |
download | pdfium-2235b7b52e2cedea9b5d4822de9548994362ca96.tar.xz |
Change ThrowScriptErrorMessage() to just ThrowException().
Shorter and easier to remember.
Review-Url: https://codereview.chromium.org/2029043002
Diffstat (limited to 'xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp')
-rw-r--r-- | xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp b/xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp index 6acd67cc7e..6273dc0b45 100644 --- a/xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp +++ b/xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp @@ -28,7 +28,7 @@ void CScript_SignaturePseudoModel::Script_SignaturePseudoModel_Verify( CFXJSE_Arguments* pArguments) { int32_t iLength = pArguments->GetLength(); if (iLength < 1 || iLength > 4) { - ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"verify"); + ThrowException(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"verify"); return; } CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify(); @@ -50,7 +50,7 @@ void CScript_SignaturePseudoModel::Script_SignaturePseudoModel_Sign( CFXJSE_Arguments* pArguments) { int32_t iLength = pArguments->GetLength(); if (iLength < 3 || iLength > 7) { - ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"sign"); + ThrowException(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"sign"); return; } CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify(); @@ -83,7 +83,7 @@ void CScript_SignaturePseudoModel::Script_SignaturePseudoModel_Enumerate( CFXJSE_Arguments* pArguments) { int32_t iLength = pArguments->GetLength(); if (iLength != 0) { - ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"enumerate"); + ThrowException(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"enumerate"); return; } CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify(); @@ -101,7 +101,7 @@ void CScript_SignaturePseudoModel::Script_SignaturePseudoModel_Clear( CFXJSE_Arguments* pArguments) { int32_t iLength = pArguments->GetLength(); if (iLength < 1 || iLength > 2) { - ThrowScriptErrorMessage(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"clear"); + ThrowException(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"clear"); return; } CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify(); |