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/extension/implementation/script.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/extension/implementation/script.cpp') diff --git a/src/extension/implementation/script.cpp b/src/extension/implementation/script.cpp index 72a015b57..f0a6ec7bf 100644 --- a/src/extension/implementation/script.cpp +++ b/src/extension/implementation/script.cpp @@ -70,7 +70,7 @@ namespace Implementation { This just keeps coming the events through so that we'll make the GUI update and look pretty. */ -void Script::pump_events (void) { +void Script::pump_events () { while ( Gtk::Main::events_pending() ) { Gtk::Main::iteration(); } @@ -903,7 +903,7 @@ void Script::checkStderr (const Glib::ustring &data, return; } -bool Script::cancelProcessing (void) { +bool Script::cancelProcessing () { _canceled = true; _main_loop->quit(); Glib::spawn_close_pid(_pid); -- cgit v1.2.3