summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-10-31 14:36:41 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-01 06:44:26 +0100
commit15c86cadadcd389bfcf80ca285c1c298353d987f (patch)
tree5b03dcae0c545dea73ceb1abefe13b46970ec290 /include/svl
parentef9bfdfe4f4ef75ca65547face0db09af7352314 (diff)
rename RemoveX->Remove in SfxUndoArray
accidentally left it this way when doing commit 19e715973e15f9e7cf6e8237643dbbc14f8eb87a Date: Mon Oct 29 16:15:27 2018 +0200 loplugin:useuniqueptr in MarkedUndoAction Change-Id: I250676df7af27f485c5d34281ef0da1e127eb24c Reviewed-on: https://gerrit.libreoffice.org/62694 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl')
-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 );
};