diff options
Diffstat (limited to 'xfa/fxgraphics/cfx_path.cpp')
-rw-r--r-- | xfa/fxgraphics/cfx_path.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxgraphics/cfx_path.cpp b/xfa/fxgraphics/cfx_path.cpp index e4fb727092..d02b7a8e48 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 { |