| Index: core/fpdfapi/parser/cpdf_string.cpp
|
| diff --git a/core/fpdfapi/parser/cpdf_string.cpp b/core/fpdfapi/parser/cpdf_string.cpp
|
| index 73c7d4cf69f8678b1715a8b75c25f2c171e88a22..f4fa956280cc274942121707103a8a23dc3f1f27 100644
|
| --- a/core/fpdfapi/parser/cpdf_string.cpp
|
| +++ b/core/fpdfapi/parser/cpdf_string.cpp
|
| @@ -8,12 +8,12 @@
|
|
|
| #include "core/fpdfapi/parser/fpdf_parser_decode.h"
|
|
|
| -CPDF_String::CPDF_String() : m_bHex(FALSE) {}
|
| +CPDF_String::CPDF_String() : m_bHex(false) {}
|
|
|
| -CPDF_String::CPDF_String(const CFX_ByteString& str, FX_BOOL bHex)
|
| +CPDF_String::CPDF_String(const CFX_ByteString& str, bool bHex)
|
| : m_String(str), m_bHex(bHex) {}
|
|
|
| -CPDF_String::CPDF_String(const CFX_WideString& str) : m_bHex(FALSE) {
|
| +CPDF_String::CPDF_String(const CFX_WideString& str) : m_bHex(false) {
|
| m_String = PDF_EncodeText(str);
|
| }
|
|
|
|
|