summaryrefslogtreecommitdiff
path: root/core/fxcrt/cfx_seekablestreamproxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt/cfx_seekablestreamproxy.h')
-rw-r--r--core/fxcrt/cfx_seekablestreamproxy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcrt/cfx_seekablestreamproxy.h b/core/fxcrt/cfx_seekablestreamproxy.h
index d059fb8956..1a8e6f2f3b 100644
--- a/core/fxcrt/cfx_seekablestreamproxy.h
+++ b/core/fxcrt/cfx_seekablestreamproxy.h
@@ -15,7 +15,7 @@
class CFX_SeekableStreamProxy : public CFX_Retainable {
public:
- enum class Pos {
+ enum class From {
Begin = 0,
Current,
};
@@ -28,7 +28,7 @@ class CFX_SeekableStreamProxy : public CFX_Retainable {
FX_STRSIZE GetBOMLength() const { return std::max(0, m_wBOMLength); }
bool IsEOF() const { return m_iPosition >= GetLength(); }
- void Seek(CFX_SeekableStreamProxy::Pos eSeek, FX_FILESIZE iOffset);
+ void Seek(From eSeek, FX_FILESIZE iOffset);
FX_STRSIZE ReadString(wchar_t* pStr, FX_STRSIZE iMaxLength, bool* bEOS);
void WriteString(const CFX_WideStringC& str);