summaryrefslogtreecommitdiffstats
path: root/src/extension/implementation/script.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/implementation/script.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/implementation/script.h')
-rw-r--r--src/extension/implementation/script.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/extension/implementation/script.h b/src/extension/implementation/script.h
index 22c15faa8..fba1df136 100644
--- a/src/extension/implementation/script.h
+++ b/src/extension/implementation/script.h
@@ -34,7 +34,7 @@ namespace Implementation {
class Script : public Implementation {
public:
- Script(void);
+ Script();
~Script() override;
bool load(Inkscape::Extension::Extension *module) override;
void unload(Inkscape::Extension::Extension *module) override;
@@ -47,7 +47,7 @@ public:
Gtk::Widget *prefs_output(Inkscape::Extension::Output *module) override;
void save(Inkscape::Extension::Output *module, SPDocument *doc, gchar const *filename) override;
void effect(Inkscape::Extension::Effect *module, Inkscape::UI::View::View *doc, ImplementationDocumentCache * docCache) override;
- bool cancelProcessing (void) override;
+ bool cancelProcessing () override;
private:
bool _canceled;
@@ -96,7 +96,7 @@ private:
bool isDead () { return _dead; }
void init(int fd, Glib::RefPtr<Glib::MainLoop> main);
bool read(Glib::IOCondition condition);
- Glib::ustring string (void) { return _string; };
+ Glib::ustring string () { return _string; };
bool toFile(const Glib::ustring &name);
};
@@ -105,7 +105,7 @@ private:
const Glib::ustring &filein,
file_listener &fileout);
- void pump_events(void);
+ void pump_events();
/** \brief A definition of an interpreter, which can be specified
in the INX file, but we need to know what to call */