| Index: core/fpdfapi/parser/cpdf_string.h
|
| diff --git a/core/fpdfapi/parser/cpdf_string.h b/core/fpdfapi/parser/cpdf_string.h
|
| index 01ea8224d48a8653be73959ff6d98094c3d305c6..efc6d076c7afdeb04e6a50c567b2c0c3fb953f18 100644
|
| --- a/core/fpdfapi/parser/cpdf_string.h
|
| +++ b/core/fpdfapi/parser/cpdf_string.h
|
| @@ -14,7 +14,7 @@
|
| class CPDF_String : public CPDF_Object {
|
| public:
|
| CPDF_String();
|
| - CPDF_String(const CFX_ByteString& str, FX_BOOL bHex);
|
| + CPDF_String(const CFX_ByteString& str, bool bHex);
|
| explicit CPDF_String(const CFX_WideString& str);
|
|
|
| // CPDF_Object.
|
| @@ -27,13 +27,13 @@ class CPDF_String : public CPDF_Object {
|
| CPDF_String* AsString() override;
|
| const CPDF_String* AsString() const override;
|
|
|
| - FX_BOOL IsHex() const { return m_bHex; }
|
| + bool IsHex() const { return m_bHex; }
|
|
|
| protected:
|
| ~CPDF_String() override;
|
|
|
| CFX_ByteString m_String;
|
| - FX_BOOL m_bHex;
|
| + bool m_bHex;
|
| };
|
|
|
| inline CPDF_String* ToString(CPDF_Object* obj) {
|
|
|