Home
last modified time | relevance | path

Searched refs:m_UndoItemStack (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/fpdfsdk/pwl/
Dcpwl_edit_impl.cpp224 m_UndoItemStack[m_nCurUndoPos - 1]->Undo(); in Undo()
231 return m_nCurUndoPos < m_UndoItemStack.size(); in CanRedo()
237 m_UndoItemStack[m_nCurUndoPos]->Redo(); in Redo()
249 if (m_UndoItemStack.size() >= kEditUndoMaxItems) in AddItem()
252 m_UndoItemStack.push_back(std::move(pItem)); in AddItem()
253 m_nCurUndoPos = m_UndoItemStack.size(); in AddItem()
257 ASSERT(m_UndoItemStack.size() > 1); in RemoveHeads()
258 m_UndoItemStack.pop_front(); in RemoveHeads()
263 m_UndoItemStack.pop_back(); in RemoveTails()
Dcpwl_edit_impl.h92 std::deque<std::unique_ptr<IFX_Edit_UndoItem>> m_UndoItemStack; variable