| Index: core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h
|
| diff --git a/core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h b/core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h
|
| index e3b7496da7ad9bc588af2cec8d6b05c816386494..41cec0cda2a7f662d92c88375506c957f40b4c46 100644
|
| --- a/core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h
|
| +++ b/core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h
|
| @@ -39,8 +39,7 @@ class CPDF_Dictionary : public CPDF_Object {
|
| CFX_WideString GetUnicodeTextBy(const CFX_ByteString& key) const;
|
| int GetIntegerBy(const CFX_ByteString& key) const;
|
| int GetIntegerBy(const CFX_ByteString& key, int default_int) const;
|
| - FX_BOOL GetBooleanBy(const CFX_ByteString& key,
|
| - FX_BOOL bDefault = FALSE) const;
|
| + bool GetBooleanBy(const CFX_ByteString& key, bool bDefault = false) const;
|
| FX_FLOAT GetNumberBy(const CFX_ByteString& key) const;
|
| CPDF_Dictionary* GetDictBy(const CFX_ByteString& key) const;
|
| CPDF_Stream* GetStreamBy(const CFX_ByteString& key) const;
|
| @@ -70,7 +69,7 @@ class CPDF_Dictionary : public CPDF_Object {
|
| }
|
| void SetAtRect(const CFX_ByteString& key, const CFX_FloatRect& rect);
|
| void SetAtMatrix(const CFX_ByteString& key, const CFX_Matrix& matrix);
|
| - void SetAtBoolean(const CFX_ByteString& key, FX_BOOL bValue);
|
| + void SetAtBoolean(const CFX_ByteString& key, bool bValue);
|
|
|
| void AddReference(const CFX_ByteString& key,
|
| CPDF_IndirectObjectHolder* pDoc,
|
|
|