diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 13:55:58 +0000 |
|---|---|---|
| committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 13:55:58 +0000 |
| commit | 884fe02952017ac219cd23f9407d27ed4d8a8620 (patch) | |
| tree | a86d66e240ae1e72007ba75b23757c71d5a9a28c /src/verbs.cpp | |
| parent | Run clang-tidy’s modernize-use-emplace pass. (diff) | |
| download | inkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.tar.gz inkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.zip | |
Run clang-tidy’s modernize-redundant-void-arg pass.
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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<Inkscape::Verb *> -Verb::getList (void) { +Verb::getList () { std::vector<Verb *> 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; |
