Index: core/src/fpdfdoc/doc_action.cpp |
diff --git a/core/src/fpdfdoc/doc_action.cpp b/core/src/fpdfdoc/doc_action.cpp |
index da2e05af2e639d97319c8f468f6acaec38155760..4c113aab2b35ca510f1d895a3e5835a7f6675f58 100644 |
--- a/core/src/fpdfdoc/doc_action.cpp |
+++ b/core/src/fpdfdoc/doc_action.cpp |
@@ -282,10 +282,10 @@ const FX_CHAR* g_sAATypes[] = {"E", "X", "D", "U", "Fo", "Bl", "PO", "PC", "PV", |
"WC", "WS", "DS", "WP", "DP", |
"" |
}; |
-FX_BOOL CPDF_AAction::ActionExist(AActionType eType) const |
+bool CPDF_AAction::ActionExist(AActionType eType) const |
{ |
if (m_pDict == NULL) { |
- return FALSE; |
+ return false; |
} |
return m_pDict->KeyExist(g_sAATypes[(int)eType]); |
} |