| Index: xfa/fde/fde_iterator.cpp
|
| diff --git a/xfa/fde/fde_iterator.cpp b/xfa/fde/fde_iterator.cpp
|
| index 6e8ca0061ab282c2c6823101edf8b24732d3795c..a51b8ad90a8935353d788bb4e51e43e0813a5a94 100644
|
| --- a/xfa/fde/fde_iterator.cpp
|
| +++ b/xfa/fde/fde_iterator.cpp
|
| @@ -8,16 +8,17 @@
|
|
|
| #include "xfa/fgas/crt/fgas_utils.h"
|
|
|
| -CFDE_VisualSetIterator::CFDE_VisualSetIterator() : m_dwFilter(0) {}
|
| +CFDE_VisualSetIterator::CFDE_VisualSetIterator()
|
| + : m_dwFilter(0), m_CanvasStack(100) {}
|
|
|
| CFDE_VisualSetIterator::~CFDE_VisualSetIterator() {
|
| - m_CanvasStack.RemoveAll();
|
| + m_CanvasStack.RemoveAll(FALSE);
|
| }
|
|
|
| FX_BOOL CFDE_VisualSetIterator::AttachCanvas(IFDE_CanvasSet* pCanvas) {
|
| ASSERT(pCanvas);
|
|
|
| - m_CanvasStack.RemoveAll();
|
| + m_CanvasStack.RemoveAll(FALSE);
|
| FDE_CANVASITEM canvas;
|
| canvas.hCanvas = nullptr;
|
| canvas.pCanvas = pCanvas;
|
|
|