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/ui/interface.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/ui/interface.h')
| -rw-r--r-- | src/ui/interface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/interface.h b/src/ui/interface.h index 6e95c161c..83788ca1b 100644 --- a/src/ui/interface.h +++ b/src/ui/interface.h @@ -43,12 +43,12 @@ void sp_create_window (SPViewWidget *vw, bool editable); */ void sp_ui_close_view (GtkWidget *widget); -void sp_ui_new_view (void); +void sp_ui_new_view (); /** * @todo TODO: not yet working. To be re-enabled (by adding to menu) once it works. */ -void sp_ui_new_view_preview (void); +void sp_ui_new_view_preview (); /** * This function is called to exit the program, and iterates through all @@ -59,7 +59,7 @@ void sp_ui_new_view_preview (void); * Returns FALSE if the user cancels the close_all operation, TRUE * otherwise. */ -unsigned int sp_ui_close_all (void); +unsigned int sp_ui_close_all (); /** * Build the main tool bar. |
