Lines Matching refs:pUndoManager
1181 ::svl::IUndoManager* pUndoManager = ImpGetUndoManager(); in ImpGetUndoStrings()
1182 if(pUndoManager) in ImpGetUndoStrings()
1184 sal_uInt16 nCount(pUndoManager->GetUndoActionCount()); in ImpGetUndoStrings()
1194 String* pInsertString = new String(pUndoManager->GetUndoActionComment(a)); in ImpGetUndoStrings()
1216 ::svl::IUndoManager* pUndoManager = ImpGetUndoManager(); in ImpGetRedoStrings()
1217 if(pUndoManager) in ImpGetRedoStrings()
1219 sal_uInt16 nCount(pUndoManager->GetRedoActionCount()); in ImpGetRedoStrings()
1229 String* pInsertString = new String(pUndoManager->GetRedoActionComment(a)); in ImpGetRedoStrings()
1251 ::svl::IUndoManager* pUndoManager = ImpGetUndoManager(); in ImpSidUndo()
1261 if(nNumber && pUndoManager) in ImpSidUndo()
1263 sal_uInt16 nCount(pUndoManager->GetUndoActionCount()); in ImpSidUndo()
1270 while(nNumber-- && pUndoManager->GetUndoActionCount()) in ImpSidUndo()
1272 pUndoManager->Undo(); in ImpSidUndo()
1300 ::svl::IUndoManager* pUndoManager = ImpGetUndoManager(); in ImpSidRedo()
1310 if(nNumber && pUndoManager) in ImpSidRedo()
1312 sal_uInt16 nCount(pUndoManager->GetRedoActionCount()); in ImpSidRedo()
1319 while(nNumber-- && pUndoManager->GetRedoActionCount()) in ImpSidRedo()
1321 pUndoManager->Redo(); in ImpSidRedo()