summaryrefslogtreecommitdiff
path: root/include/svl/undo.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svl/undo.hxx')
-rw-r--r--include/svl/undo.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svl/undo.hxx b/include/svl/undo.hxx
index 87c5196960f2..ad189ea54a08 100644
--- a/include/svl/undo.hxx
+++ b/include/svl/undo.hxx
@@ -106,8 +106,8 @@ struct SVL_DLLPUBLIC SfxUndoArray
SfxUndoArray( SfxUndoArray const & ) = delete; // MSVC2017 workaround
SfxUndoAction* GetUndoAction(size_t idx) { return maUndoActions[idx].pAction.get(); }
- std::unique_ptr<SfxUndoAction> RemoveX(int idx);
- void RemoveX( size_t i_pos, size_t i_count );
+ std::unique_ptr<SfxUndoAction> Remove(int idx);
+ void Remove( size_t i_pos, size_t i_count );
void Insert( std::unique_ptr<SfxUndoAction> i_action, size_t i_pos );
};