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/ui/dialog/floating-behavior.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ui/dialog/floating-behavior.cpp') diff --git a/src/ui/dialog/floating-behavior.cpp b/src/ui/dialog/floating-behavior.cpp index 0cc3af606..dccbd76b7 100644 --- a/src/ui/dialog/floating-behavior.cpp +++ b/src/ui/dialog/floating-behavior.cpp @@ -62,7 +62,7 @@ FloatingBehavior::FloatingBehavior(Dialog &dialog) : * zero so that the transition happens instantaneously. This occurs on * windows as opacity changes cause flicker there. */ -void FloatingBehavior::_focus_event (void) +void FloatingBehavior::_focus_event () { Inkscape::Preferences *prefs = Inkscape::Preferences::get(); _steps = 0; @@ -96,7 +96,7 @@ void FloatingBehavior::_focus_event (void) * the opacity half way to the goal until it runs out of steps, and then * it just forces the goal. */ -bool FloatingBehavior::_trans_timer (void) { +bool FloatingBehavior::_trans_timer () { // printf("Go go gadget timer: %d\n", _steps); if (_steps == 0) { if (_dialog_active.get_value()) { -- cgit v1.2.3