summaryrefslogtreecommitdiffstats
path: root/src/extension/execution-env.h
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/execution-env.h
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/execution-env.h')
-rw-r--r--src/extension/execution-env.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/extension/execution-env.h b/src/extension/execution-env.h
index 5ae7beb42..1bafdf8a7 100644
--- a/src/extension/execution-env.h
+++ b/src/extension/execution-env.h
@@ -81,30 +81,30 @@ public:
Implementation::ImplementationDocumentCache * docCache = nullptr,
bool show_working = true,
bool show_errors = true);
- virtual ~ExecutionEnv (void);
+ virtual ~ExecutionEnv ();
/** \brief Starts the execution of the effect
\return Returns whether the effect was executed to completion */
- void run (void);
+ void run ();
/** \brief Cancel the execution of the effect */
- void cancel (void);
+ void cancel ();
/** \brief Commit the changes to the document */
- void commit (void);
+ void commit ();
/** \brief Undoes what the effect completed. */
- void undo (void);
+ void undo ();
/** \brief Wait for the effect to complete if it hasn't. */
- bool wait (void);
- void reselect (void);
+ bool wait ();
+ void reselect ();
/** \brief Return reference to working dialog (if any) */
- Gtk::Dialog *get_working_dialog (void) { return _visibleDialog; };
+ Gtk::Dialog *get_working_dialog () { return _visibleDialog; };
private:
- void runComplete (void);
- void createWorkingDialog (void);
+ void runComplete ();
+ void createWorkingDialog ();
void workingCanceled (const int resp);
- void genDocCache (void);
- void killDocCache (void);
+ void genDocCache ();
+ void killDocCache ();
};
} } /* namespace Inkscape, Extension */