diff options
Diffstat (limited to 'xfa/src/fdp')
-rw-r--r-- | xfa/src/fdp/include/fde_xml.h | 8 | ||||
-rw-r--r-- | xfa/src/fdp/src/xml/fde_xml_imp.cpp (renamed from xfa/src/fdp/src/xml/fde_xml.cpp) | 5 | ||||
-rw-r--r-- | xfa/src/fdp/src/xml/fde_xml_imp.h (renamed from xfa/src/fdp/src/xml/fde_xml.h) | 8 |
3 files changed, 12 insertions, 9 deletions
diff --git a/xfa/src/fdp/include/fde_xml.h b/xfa/src/fdp/include/fde_xml.h index 9fc80b789d..85793aae19 100644 --- a/xfa/src/fdp/include/fde_xml.h +++ b/xfa/src/fdp/include/fde_xml.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef _FDE_XML
-#define _FDE_XML
+#ifndef FDE_XML_H_
+#define FDE_XML_H_
+
class IFDE_XMLNode;
class IFDE_XMLInstruction;
class IFDE_XMLDeclaration;
@@ -228,4 +229,5 @@ class IFDE_XMLSyntaxParser { virtual void GetTextData(CFX_WideString& wsText) const = 0;
virtual void GetTargetData(CFX_WideString& wsData) const = 0;
};
-#endif
+
+#endif // FDE_XML_H_
diff --git a/xfa/src/fdp/src/xml/fde_xml.cpp b/xfa/src/fdp/src/xml/fde_xml_imp.cpp index 8725cb7655..6961aba6f8 100644 --- a/xfa/src/fdp/src/xml/fde_xml.cpp +++ b/xfa/src/fdp/src/xml/fde_xml_imp.cpp @@ -7,7 +7,7 @@ #include <algorithm>
#include "xfa/src/foxitlib.h"
-#include "fde_xml.h"
+#include "fde_xml_imp.h"
#ifdef __cplusplus
extern "C" {
#endif
@@ -1320,8 +1320,7 @@ CFDE_BlockBuffer::CFDE_BlockBuffer(int32_t iAllocStep) : m_iDataLength(0),
m_iBufferSize(0),
m_iAllocStep(iAllocStep),
- m_iStartPosition(0) {
-}
+ m_iStartPosition(0) {}
CFDE_BlockBuffer::~CFDE_BlockBuffer() {
ClearBuffer();
}
diff --git a/xfa/src/fdp/src/xml/fde_xml.h b/xfa/src/fdp/src/xml/fde_xml_imp.h index fb5ea6f44b..1a8097008e 100644 --- a/xfa/src/fdp/src/xml/fde_xml.h +++ b/xfa/src/fdp/src/xml/fde_xml_imp.h @@ -4,8 +4,9 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef _FDE_XML_IMP
-#define _FDE_XML_IMP
+#ifndef FDE_XML_IMP_H_
+#define FDE_XML_IMP_H_
+
#define _FDE_BLOCK_BUFFER
#ifdef _FDE_BLOCK_BUFFER
class CFDE_BlockBuffer;
@@ -370,4 +371,5 @@ class CFDE_XMLSyntaxParser : public IFDE_XMLSyntaxParser, public CFX_Target { void GetData(CFX_WideString& wsData) const;
#endif
};
-#endif
+
+#endif // FDE_XML_IMP_H_
|