diff options
author | jan Iversen <jani@libreoffice.org> | 2018-05-21 18:09:09 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-21 12:48:04 -0700 |
commit | e536682b84eda7444be1c9b85e0d5942596c6914 (patch) | |
tree | aebfcb65c29609ddc1442281a30c64a55f518d1b /desktop-widgets/divelogexportdialog.cpp | |
parent | e47f6df07662feb15c30a7f4bd0df3d1c23a022b (diff) | |
download | subsurface-e536682b84eda7444be1c9b85e0d5942596c6914.tar.gz |
desktop-widgets: Change Q_UNUSED to no parameter name
C++ permits use of parameters without name, which signals unused
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'desktop-widgets/divelogexportdialog.cpp')
-rw-r--r-- | desktop-widgets/divelogexportdialog.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/desktop-widgets/divelogexportdialog.cpp b/desktop-widgets/divelogexportdialog.cpp index 078e5d0d1..bf01b0e9f 100644 --- a/desktop-widgets/divelogexportdialog.cpp +++ b/desktop-widgets/divelogexportdialog.cpp @@ -112,9 +112,8 @@ void DiveLogExportDialog::exportHtmlInit(const QString &filename) exportHtmlInitLogic(filename, hes); } -void DiveLogExportDialog::on_exportGroup_buttonClicked(QAbstractButton *button) +void DiveLogExportDialog::on_exportGroup_buttonClicked(QAbstractButton*) { - Q_UNUSED(button) showExplanation(); } |