diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_dataexporter.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_dataexporter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/parser/cxfa_dataexporter.cpp b/xfa/fxfa/parser/cxfa_dataexporter.cpp index 1113ba49b6..02c316d920 100644 --- a/xfa/fxfa/parser/cxfa_dataexporter.cpp +++ b/xfa/fxfa/parser/cxfa_dataexporter.cpp @@ -22,6 +22,8 @@ namespace { +constexpr const wchar_t kFormNS[] = L"http://www.xfa.org/schema/xfa-form/"; + WideString ExportEncodeAttribute(const WideString& str) { CFX_WideTextBuf textBuf; int32_t iLen = str.GetLength(); @@ -402,9 +404,7 @@ void XFA_DataExporter_RegenerateFormFile( pStream->WriteString(L"\""); } pStream->WriteString(L" xmlns=\""); - - const wchar_t* pURI = XFA_GetPacketByIndex(XFA_PacketType::Form)->pURI; - pStream->WriteString(WideStringView(pURI, wcslen(pURI))); + pStream->WriteString(WideStringView(kFormNS)); WideString wsVersionNumber; RecognizeXFAVersionNumber( |