summaryrefslogtreecommitdiff
path: root/svl/source/undo
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-07-02 22:29:26 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-07-02 22:29:26 +0200
commite943a42e2bd7db27679c3b99ef97f955db1244f4 (patch)
tree74c4476118fcc0a81d23fc23ff984d07549e78a5 /svl/source/undo
parent349475566f2b8ffe191f6ed673f01b19bc0c9166 (diff)
loplugin:casttovoid: svl
Change-Id: Iec49ad76f102dc228d41beb10d7e99ed197c0ea8
Diffstat (limited to 'svl/source/undo')
-rw-r--r--svl/source/undo/undo.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/svl/source/undo/undo.cxx b/svl/source/undo/undo.cxx
index cb227fc5a2d3..0c4fe1e7a53d 100644
--- a/svl/source/undo/undo.cxx
+++ b/svl/source/undo/undo.cxx
@@ -95,9 +95,8 @@ void SfxUndoAction::Undo()
}
-void SfxUndoAction::UndoWithContext( SfxUndoContext& i_context )
+void SfxUndoAction::UndoWithContext( SfxUndoContext& )
{
- (void)i_context;
Undo();
}
@@ -109,9 +108,8 @@ void SfxUndoAction::Redo()
}
-void SfxUndoAction::RedoWithContext( SfxUndoContext& i_context )
+void SfxUndoAction::RedoWithContext( SfxUndoContext& )
{
- (void)i_context;
Redo();
}