diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 13:55:58 +0000 |
|---|---|---|
| committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 13:55:58 +0000 |
| commit | 884fe02952017ac219cd23f9407d27ed4d8a8620 (patch) | |
| tree | a86d66e240ae1e72007ba75b23757c71d5a9a28c /src/extension/input.h | |
| parent | Run clang-tidy’s modernize-use-emplace pass. (diff) | |
| download | inkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.tar.gz inkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.zip | |
Run clang-tidy’s modernize-redundant-void-arg pass.
Diffstat (limited to 'src/extension/input.h')
| -rw-r--r-- | src/extension/input.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/extension/input.h b/src/extension/input.h index c433272ca..6db5a98b9 100644 --- a/src/extension/input.h +++ b/src/extension/input.h @@ -45,13 +45,13 @@ public: Input (Inkscape::XML::Node * in_repr, Implementation::Implementation * in_imp); - ~Input (void) override; - bool check (void) override; + ~Input () override; + bool check () override; SPDocument * open (gchar const *uri); - gchar * get_mimetype (void); - gchar * get_extension (void); - gchar * get_filetypename (void); - gchar * get_filetypetooltip (void); + gchar * get_mimetype (); + gchar * get_extension (); + gchar * get_filetypename (); + gchar * get_filetypetooltip (); bool prefs (gchar const *uri); }; |
