mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
diveshareexportdialog.cpp: fix an argument order warning
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
parent
6f713fcb99
commit
aee6f0b2c4
1 changed files with 2 additions and 2 deletions
|
@ -11,8 +11,8 @@
|
|||
DiveShareExportDialog::DiveShareExportDialog(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::DiveShareExportDialog),
|
||||
reply(NULL),
|
||||
exportSelected(false)
|
||||
exportSelected(false),
|
||||
reply(NULL)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue