summaryrefslogtreecommitdiffstats
path: root/src/file.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/file.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/file.h')
-rw-r--r--src/file.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/file.h b/src/file.h
index c86f065d3..c24ecdf6f 100644
--- a/src/file.h
+++ b/src/file.h
@@ -45,7 +45,7 @@ Glib::ustring sp_file_default_template_uri();
* Return value is a pointer to the newly created desktop.
*/
SPDesktop* sp_file_new (const std::string &templ);
-SPDesktop* sp_file_new_default (void);
+SPDesktop* sp_file_new_default ();
/*######################
## D E L E T E
@@ -54,7 +54,7 @@ SPDesktop* sp_file_new_default (void);
/**
* Close the document/view
*/
-void sp_file_exit (void);
+void sp_file_exit ();
/*######################
## O P E N