diff options
Diffstat (limited to 'core/fxcrt/xml/cfx_xmldoc.h')
-rw-r--r-- | core/fxcrt/xml/cfx_xmldoc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/fxcrt/xml/cfx_xmldoc.h b/core/fxcrt/xml/cfx_xmldoc.h index 07be2d4e84..55976b01b3 100644 --- a/core/fxcrt/xml/cfx_xmldoc.h +++ b/core/fxcrt/xml/cfx_xmldoc.h @@ -19,14 +19,13 @@ class CFX_XMLDoc { explicit CFX_XMLDoc(const RetainPtr<CFX_SeekableStreamProxy>& pStream); ~CFX_XMLDoc(); - int32_t DoLoad(); + int32_t Load(); void CloseXML(); CFX_XMLNode* GetRoot() const { return m_pRoot.get(); } CFX_XMLParser* GetParser() const { return m_pXMLParser.get(); } private: - int32_t m_iStatus; std::unique_ptr<CFX_XMLNode> m_pRoot; std::unique_ptr<CFX_XMLParser> m_pXMLParser; }; |