| Index: fxjs/cfxjse_class.cpp
|
| diff --git a/fxjs/cfxjse_class.cpp b/fxjs/cfxjse_class.cpp
|
| index c2c8e5fec22268a19dd2ad279c7336c1bb474220..644e81a4f30d4a8d0389bccc5fad2a654f8823c7 100644
|
| --- a/fxjs/cfxjse_class.cpp
|
| +++ b/fxjs/cfxjse_class.cpp
|
| @@ -151,7 +151,7 @@ void DynPropGetterAdapter(const FXJSE_CLASS_DESCRIPTOR* lpClass,
|
| int32_t nPropType =
|
| lpClass->dynPropTypeGetter == nullptr
|
| ? FXJSE_ClassPropType_Property
|
| - : lpClass->dynPropTypeGetter(pObject, szPropName, FALSE);
|
| + : lpClass->dynPropTypeGetter(pObject, szPropName, false);
|
| if (nPropType == FXJSE_ClassPropType_Property) {
|
| if (lpClass->dynPropGetter)
|
| lpClass->dynPropGetter(pObject, szPropName, pValue);
|
| @@ -187,38 +187,38 @@ void DynPropSetterAdapter(const FXJSE_CLASS_DESCRIPTOR* lpClass,
|
| int32_t nPropType =
|
| lpClass->dynPropTypeGetter == nullptr
|
| ? FXJSE_ClassPropType_Property
|
| - : lpClass->dynPropTypeGetter(pObject, szPropName, FALSE);
|
| + : lpClass->dynPropTypeGetter(pObject, szPropName, false);
|
| if (nPropType != FXJSE_ClassPropType_Method) {
|
| if (lpClass->dynPropSetter)
|
| lpClass->dynPropSetter(pObject, szPropName, pValue);
|
| }
|
| }
|
|
|
| -FX_BOOL DynPropQueryAdapter(const FXJSE_CLASS_DESCRIPTOR* lpClass,
|
| - CFXJSE_Value* pObject,
|
| - const CFX_ByteStringC& szPropName) {
|
| +bool DynPropQueryAdapter(const FXJSE_CLASS_DESCRIPTOR* lpClass,
|
| + CFXJSE_Value* pObject,
|
| + const CFX_ByteStringC& szPropName) {
|
| ASSERT(lpClass);
|
| int32_t nPropType =
|
| lpClass->dynPropTypeGetter == nullptr
|
| ? FXJSE_ClassPropType_Property
|
| - : lpClass->dynPropTypeGetter(pObject, szPropName, TRUE);
|
| + : lpClass->dynPropTypeGetter(pObject, szPropName, true);
|
| return nPropType != FXJSE_ClassPropType_None;
|
| }
|
|
|
| -FX_BOOL DynPropDeleterAdapter(const FXJSE_CLASS_DESCRIPTOR* lpClass,
|
| - CFXJSE_Value* pObject,
|
| - const CFX_ByteStringC& szPropName) {
|
| +bool DynPropDeleterAdapter(const FXJSE_CLASS_DESCRIPTOR* lpClass,
|
| + CFXJSE_Value* pObject,
|
| + const CFX_ByteStringC& szPropName) {
|
| ASSERT(lpClass);
|
| int32_t nPropType =
|
| lpClass->dynPropTypeGetter == nullptr
|
| ? FXJSE_ClassPropType_Property
|
| - : lpClass->dynPropTypeGetter(pObject, szPropName, FALSE);
|
| + : lpClass->dynPropTypeGetter(pObject, szPropName, false);
|
| if (nPropType != FXJSE_ClassPropType_Method) {
|
| if (lpClass->dynPropDeleter)
|
| return lpClass->dynPropDeleter(pObject, szPropName);
|
| - return nPropType == FXJSE_ClassPropType_Property ? FALSE : TRUE;
|
| + return nPropType != FXJSE_ClassPropType_Property;
|
| }
|
| - return FALSE;
|
| + return false;
|
| }
|
|
|
| void NamedPropertyQueryCallback(
|
| @@ -315,7 +315,7 @@ void NamedPropertyEnumeratorCallback(
|
| CFXJSE_Class* CFXJSE_Class::Create(
|
| CFXJSE_Context* lpContext,
|
| const FXJSE_CLASS_DESCRIPTOR* lpClassDefinition,
|
| - FX_BOOL bIsJSGlobal) {
|
| + bool bIsJSGlobal) {
|
| if (!lpContext || !lpClassDefinition)
|
| return nullptr;
|
|
|
|
|