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/extension/param/bool.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/extension/param/bool.cpp')
| -rw-r--r-- | src/extension/param/bool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extension/param/bool.cpp b/src/extension/param/bool.cpp index eea660f69..ac86e77b1 100644 --- a/src/extension/param/bool.cpp +++ b/src/extension/param/bool.cpp @@ -94,7 +94,7 @@ public: * A function to respond to the check box changing. * Adjusts the value of the preference to match that in the check box. */ - void on_toggle (void); + void on_toggle (); private: /** Param to change. */ @@ -104,7 +104,7 @@ private: sigc::signal<void> * _changeSignal; }; -void ParamBoolCheckButton::on_toggle(void) +void ParamBoolCheckButton::on_toggle() { _pref->set(this->get_active(), nullptr /**\todo fix this */, nullptr); if (_changeSignal != nullptr) { |
