Index: xfa/fxfa/parser/cxfa_document.h |
diff --git a/xfa/fxfa/parser/cxfa_document.h b/xfa/fxfa/parser/cxfa_document.h |
index 919be5da2d7866b523d8fadea64b6ac50a54bf93..4fd2d79504b8d30d99b293c1d2e883a8d68f3a09 100644 |
--- a/xfa/fxfa/parser/cxfa_document.h |
+++ b/xfa/fxfa/parser/cxfa_document.h |
@@ -75,13 +75,13 @@ class CXFA_Document { |
void SetRoot(CXFA_Node* pNewRoot); |
void AddPurgeNode(CXFA_Node* pNode); |
- FX_BOOL RemovePurgeNode(CXFA_Node* pNode); |
+ bool RemovePurgeNode(CXFA_Node* pNode); |
void PurgeNodes(); |
bool HasFlag(uint32_t dwFlag) { return (m_dwDocFlags & dwFlag) == dwFlag; } |
- void SetFlag(uint32_t dwFlag, FX_BOOL bOn); |
+ void SetFlag(uint32_t dwFlag, bool bOn); |
- FX_BOOL IsInteractive(); |
+ bool IsInteractive(); |
XFA_VERSION GetCurVersionMode() { return m_eCurVersionMode; } |
XFA_VERSION RecognizeXFAVersionNumber(CFX_WideString& wsTemplateNS); |
@@ -90,13 +90,13 @@ class CXFA_Document { |
void DoProtoMerge(); |
void DoDataMerge(); |
- void DoDataRemerge(FX_BOOL bDoDataMerge); |
+ void DoDataRemerge(bool bDoDataMerge); |
CXFA_Node* DataMerge_CopyContainer(CXFA_Node* pTemplateNode, |
CXFA_Node* pFormNode, |
CXFA_Node* pDataScope, |
- FX_BOOL bOneInstance, |
- FX_BOOL bDataMerge, |
- FX_BOOL bUpLevel); |
+ bool bOneInstance, |
+ bool bDataMerge, |
+ bool bUpLevel); |
void DataMerge_UpdateBindingRelations(CXFA_Node* pFormUpdateRoot); |
void ClearLayoutData(); |