diff options
author | infirit <[email protected]> | 2014-12-13 13:57:08 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-12-13 18:32:16 +0100 |
commit | f8f216bf7cb0893a2c3a716d070899e39242203a (patch) | |
tree | f6b0af0c12991feb8a0a2dd0169659820b04c1dd | |
parent | 8250785188a018fcbc1bb0f5562f531ce4226c60 (diff) | |
download | mate-settings-daemon-f8f216bf7cb0893a2c3a716d070899e39242203a.tar.bz2 mate-settings-daemon-f8f216bf7cb0893a2c3a716d070899e39242203a.tar.xz |
housekeeping: Use void when no parameters to function
Based on GSD commit: 826de890a80692da47721191e4e58b171691f81e
From: Bastien Nocera <[email protected]>
-rw-r--r-- | plugins/housekeeping/msd-ldsm-trash-empty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/housekeeping/msd-ldsm-trash-empty.c b/plugins/housekeeping/msd-ldsm-trash-empty.c index a12f8ce..69a8a42 100644 --- a/plugins/housekeeping/msd-ldsm-trash-empty.c +++ b/plugins/housekeeping/msd-ldsm-trash-empty.c @@ -323,7 +323,7 @@ trash_empty_confirmation_response (GtkDialog *dialog, } static gboolean -trash_empty_require_confirmation () +trash_empty_require_confirmation (void) { GSettings *settings; gboolean require_confirmation = TRUE; |