mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Silence warnings in divelogexportdialog.cpp
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
60ee897b29
commit
ac7540b164
1 changed files with 2 additions and 1 deletions
|
@ -107,6 +107,7 @@ void DiveLogExportDialog::exportHtmlInit(const QString &filename)
|
|||
|
||||
void DiveLogExportDialog::on_exportGroup_buttonClicked(QAbstractButton *button)
|
||||
{
|
||||
Q_UNUSED(button)
|
||||
showExplanation();
|
||||
}
|
||||
|
||||
|
@ -194,7 +195,7 @@ void DiveLogExportDialog::export_depths(const char *filename, const bool selecte
|
|||
int i;
|
||||
const char *unit = NULL;
|
||||
|
||||
struct membuffer buf = { 0 };
|
||||
struct membuffer buf = {};
|
||||
|
||||
for_each_dive (i, dive) {
|
||||
if (selected_only && !dive->selected)
|
||||
|
|
Loading…
Add table
Reference in a new issue