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/error-file.cpp | |
| 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/error-file.cpp')
| -rw-r--r-- | src/extension/error-file.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extension/error-file.cpp b/src/extension/error-file.cpp index 20dcc0f5f..fdfe87db8 100644 --- a/src/extension/error-file.cpp +++ b/src/extension/error-file.cpp @@ -39,7 +39,7 @@ namespace Extension { it should always be checked if you can see the dialog, but it is probably good to check anyway). */ -ErrorFileNotice::ErrorFileNotice (void) : +ErrorFileNotice::ErrorFileNotice () : Gtk::MessageDialog( "", /* message */ false, /* use markup */ @@ -80,7 +80,7 @@ ErrorFileNotice::ErrorFileNotice (void) : /** \brief Sets the preferences based on the checkbox value */ void -ErrorFileNotice::checkbox_toggle (void) +ErrorFileNotice::checkbox_toggle () { // std::cout << "Toggle value" << std::endl; Inkscape::Preferences *prefs = Inkscape::Preferences::get(); @@ -93,7 +93,7 @@ ErrorFileNotice::checkbox_toggle (void) user wants to see the dialog, otherwise it just exits. */ int -ErrorFileNotice::run (void) +ErrorFileNotice::run () { Inkscape::Preferences *prefs = Inkscape::Preferences::get(); if (!prefs->getBool(PREFERENCE_ID, true)) |
