From 884fe02952017ac219cd23f9407d27ed4d8a8620 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Tue, 19 Jun 2018 15:55:58 +0200 Subject: =?UTF-8?q?Run=20clang-tidy=E2=80=99s=20modernize-redundant-void-a?= =?UTF-8?q?rg=20pass.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/verbs.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/verbs.cpp') diff --git a/src/verbs.cpp b/src/verbs.cpp index 0abb51303..f859f672b 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -392,7 +392,7 @@ Verb::Verb(gchar const *id, gchar const *name, gchar const *tip, gchar const *im * The only allocated variable is the _actions variable. If it has * been allocated it is deleted. */ -Verb::~Verb(void) +Verb::~Verb() { /// \todo all the actions need to be cleaned up first. delete _actions; @@ -697,7 +697,7 @@ void Verb::sensitive(SPDocument *in_doc, bool in_sensitive) /** * Accessor to get the tooltip for verb as localised string. */ -gchar const *Verb::get_tip(void) +gchar const *Verb::get_tip() { gchar const *result = nullptr; if (_tip) { @@ -3294,7 +3294,7 @@ Verb *Verb::_base_verbs[] = { }; std::vector -Verb::getList (void) { +Verb::getList () { std::vector verbs; // Go through the dynamic verb table @@ -3313,7 +3313,7 @@ Verb::getList (void) { }; void -Verb::list (void) { +Verb::list () { // Go through the dynamic verb table for (VerbTable::iterator iter = _verbs.begin(); iter != _verbs.end(); ++iter) { Verb * verb = iter->second; -- cgit v1.2.3