Index: xfa/fxgraphics/cfx_path.cpp |
diff --git a/xfa/fxgraphics/cfx_path.cpp b/xfa/fxgraphics/cfx_path.cpp |
index e4fb727092a6d797c129b0e171758a75e370d50e..d02b7a8e48db3611776b805d8fcbac939a2b82ab 100644 |
--- a/xfa/fxgraphics/cfx_path.cpp |
+++ b/xfa/fxgraphics/cfx_path.cpp |
@@ -162,12 +162,12 @@ FWL_Error CFX_Path::Clear() { |
return FWL_Error::Succeeded; |
} |
-FX_BOOL CFX_Path::IsEmpty() const { |
+bool CFX_Path::IsEmpty() const { |
if (!m_generator) |
- return FALSE; |
+ return false; |
if (m_generator->GetPathData()->GetPointCount() == 0) |
- return TRUE; |
- return FALSE; |
+ return true; |
+ return false; |
} |
CFX_PathData* CFX_Path::GetPathData() const { |