diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-08 19:38:22 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-08 19:38:22 +0000 |
commit | 3305678c7c954ba11be0ed089f7acd2b09af0779 (patch) | |
tree | 27028722a662b9ca8cd75e32aa6fcad232c18a89 /xfa/fxfa/parser/cxfa_dataexporter.cpp | |
parent | 42d72ca1aa4763901f7c80e52c9a1c367175286d (diff) | |
download | pdfium-3305678c7c954ba11be0ed089f7acd2b09af0779.tar.xz |
Convert XFA_PACKET to an enum class
This CL converts the XFA_PACKET enum to the XFA_PacketType enum class.
Change-Id: Ic65e61c2ee681750ca0e672bc4206d676556a862
Reviewed-on: https://pdfium-review.googlesource.com/18110
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_dataexporter.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_dataexporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_dataexporter.cpp b/xfa/fxfa/parser/cxfa_dataexporter.cpp index bc6506d6d3..8b16ae745c 100644 --- a/xfa/fxfa/parser/cxfa_dataexporter.cpp +++ b/xfa/fxfa/parser/cxfa_dataexporter.cpp @@ -399,7 +399,7 @@ void XFA_DataExporter_RegenerateFormFile( } pStream->WriteString(L" xmlns=\""); - const wchar_t* pURI = XFA_GetPacketByIndex(XFA_PACKET_Form)->pURI; + const wchar_t* pURI = XFA_GetPacketByIndex(XFA_PacketType::Form)->pURI; pStream->WriteString(WideStringView(pURI, wcslen(pURI))); WideString wsVersionNumber; |