summaryrefslogtreecommitdiff
path: root/core/fxcrt/cfx_chariter.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt/cfx_chariter.h')
-rw-r--r--core/fxcrt/cfx_chariter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcrt/cfx_chariter.h b/core/fxcrt/cfx_chariter.h
index 50fdde879f..523ea5a75b 100644
--- a/core/fxcrt/cfx_chariter.h
+++ b/core/fxcrt/cfx_chariter.h
@@ -19,11 +19,11 @@ class CFX_CharIter : public IFX_CharIter {
~CFX_CharIter() override;
bool Next(bool bPrev = false) override;
- wchar_t GetChar() override;
+ wchar_t GetChar() const override;
void SetAt(int32_t nIndex) override;
int32_t GetAt() const override;
bool IsEOF(bool bTail = true) const override;
- std::unique_ptr<IFX_CharIter> Clone() override;
+ std::unique_ptr<IFX_CharIter> Clone() const override;
private:
const CFX_WideString& m_wsText;