summaryrefslogtreecommitdiff
path: root/xfa/fde/ifx_chariter.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fde/ifx_chariter.h')
-rw-r--r--xfa/fde/ifx_chariter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fde/ifx_chariter.h b/xfa/fde/ifx_chariter.h
index 6c3fa00107..c967efd4d6 100644
--- a/xfa/fde/ifx_chariter.h
+++ b/xfa/fde/ifx_chariter.h
@@ -13,11 +13,11 @@ class IFX_CharIter {
public:
virtual ~IFX_CharIter() {}
- virtual FX_BOOL Next(FX_BOOL bPrev = FALSE) = 0;
+ virtual bool Next(bool bPrev = false) = 0;
virtual FX_WCHAR GetChar() = 0;
virtual void SetAt(int32_t nIndex) = 0;
virtual int32_t GetAt() const = 0;
- virtual FX_BOOL IsEOF(FX_BOOL bTail = TRUE) const = 0;
+ virtual bool IsEOF(bool bTail = true) const = 0;
virtual IFX_CharIter* Clone() = 0;
};