Home | History | Annotate | Download | only in inspector

Lines Matching refs:m_history

93     if (!action->mergeId().isEmpty() && m_afterLastActionIndex > 0 && action->mergeId() == m_history[m_afterLastActionIndex - 1]->mergeId())
94 m_history[m_afterLastActionIndex - 1]->merge(action);
96 m_history.resize(m_afterLastActionIndex);
97 m_history.append(action);
110 while (m_afterLastActionIndex > 0 && m_history[m_afterLastActionIndex - 1]->isUndoableStateMark())
114 Action* action = m_history[m_afterLastActionIndex - 1].get();
129 while (m_afterLastActionIndex < m_history.size() && m_history[m_afterLastActionIndex]->isUndoableStateMark())
132 while (m_afterLastActionIndex < m_history.size()) {
133 Action* action = m_history[m_afterLastActionIndex].get();
148 m_history.clear();