summaryrefslogtreecommitdiff
path: root/xfa
diff options
context:
space:
mode:
Diffstat (limited to 'xfa')
-rw-r--r--xfa/fde/xml/cfde_xmlchardata.cpp2
-rw-r--r--xfa/fde/xml/cfde_xmlchardata.h4
-rw-r--r--xfa/fde/xml/cfde_xmldeclaration.h18
3 files changed, 3 insertions, 21 deletions
diff --git a/xfa/fde/xml/cfde_xmlchardata.cpp b/xfa/fde/xml/cfde_xmlchardata.cpp
index 40e4730dea..2339307938 100644
--- a/xfa/fde/xml/cfde_xmlchardata.cpp
+++ b/xfa/fde/xml/cfde_xmlchardata.cpp
@@ -7,7 +7,7 @@
#include "xfa/fde/xml/cfde_xmlchardata.h"
CFDE_XMLCharData::CFDE_XMLCharData(const CFX_WideString& wsCData)
- : CFDE_XMLDeclaration(), m_wsCharData(wsCData) {}
+ : CFDE_XMLNode(), m_wsCharData(wsCData) {}
CFDE_XMLCharData::~CFDE_XMLCharData() {}
diff --git a/xfa/fde/xml/cfde_xmlchardata.h b/xfa/fde/xml/cfde_xmlchardata.h
index 308ec1721b..ea1d3aa4bf 100644
--- a/xfa/fde/xml/cfde_xmlchardata.h
+++ b/xfa/fde/xml/cfde_xmlchardata.h
@@ -8,9 +8,9 @@
#define XFA_FDE_XML_CFDE_XMLCHARDATA_H_
#include "core/fxcrt/fx_string.h"
-#include "xfa/fde/xml/cfde_xmldeclaration.h"
+#include "xfa/fde/xml/cfde_xmlnode.h"
-class CFDE_XMLCharData : public CFDE_XMLDeclaration {
+class CFDE_XMLCharData : public CFDE_XMLNode {
public:
explicit CFDE_XMLCharData(const CFX_WideString& wsCData);
~CFDE_XMLCharData() override;
diff --git a/xfa/fde/xml/cfde_xmldeclaration.h b/xfa/fde/xml/cfde_xmldeclaration.h
deleted file mode 100644
index ade66c470f..0000000000
--- a/xfa/fde/xml/cfde_xmldeclaration.h
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2017 PDFium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-
-#ifndef XFA_FDE_XML_CFDE_XMLDECLARATION_H_
-#define XFA_FDE_XML_CFDE_XMLDECLARATION_H_
-
-#include "xfa/fde/xml/cfde_xmlnode.h"
-
-class CFDE_XMLDeclaration : public CFDE_XMLNode {
- public:
- CFDE_XMLDeclaration() {}
- ~CFDE_XMLDeclaration() override {}
-};
-
-#endif // XFA_FDE_XML_CFDE_XMLDECLARATION_H_