summaryrefslogtreecommitdiffstats
path: root/src/extension/implementation/script.cpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-06-19 13:55:58 +0000
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-06-19 13:55:58 +0000
commit884fe02952017ac219cd23f9407d27ed4d8a8620 (patch)
treea86d66e240ae1e72007ba75b23757c71d5a9a28c /src/extension/implementation/script.cpp
parentRun clang-tidy’s modernize-use-emplace pass. (diff)
downloadinkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.tar.gz
inkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.zip
Run clang-tidy’s modernize-redundant-void-arg pass.
Diffstat (limited to 'src/extension/implementation/script.cpp')
-rw-r--r--src/extension/implementation/script.cpp4
1 files changed, 2 insertions, 2 deletions
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);