Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_edit.cpp256 : m_nCurUndoPos(0), in CFX_Edit_Undo()
267 return m_nCurUndoPos > 0; in CanUndo()
273 if (m_nCurUndoPos > 0) { in Undo()
274 IFX_Edit_UndoItem* pItem = m_UndoItemStack.GetAt(m_nCurUndoPos - 1); in Undo()
277 m_nCurUndoPos--; in Undo()
278 m_bModified = (m_nCurUndoPos != 0); in Undo()
285 return m_nCurUndoPos < m_UndoItemStack.GetSize(); in CanRedo()
293 if (m_nCurUndoPos < nStackSize) { in Redo()
294 IFX_Edit_UndoItem* pItem = m_UndoItemStack.GetAt(m_nCurUndoPos); in Redo()
297 m_nCurUndoPos++; in Redo()
[all …]
/external/pdfium/fpdfsdk/include/fxedit/
Dfxet_edit.h229 int32_t GetCurUndoPos() { return m_nCurUndoPos; } in GetCurUndoPos()
241 int32_t m_nCurUndoPos; variable