mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Avoid having uninitialized member
Coverity CID 1325283 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
df51171352
commit
b80079c37f
1 changed files with 5 additions and 1 deletions
|
@ -324,7 +324,11 @@ bool ShiftImageTimesDialog::matchAll()
|
|||
return matchAllImages;
|
||||
}
|
||||
|
||||
ShiftImageTimesDialog::ShiftImageTimesDialog(QWidget *parent, QStringList fileNames) : QDialog(parent), fileNames(fileNames), m_amount(0)
|
||||
ShiftImageTimesDialog::ShiftImageTimesDialog(QWidget *parent, QStringList fileNames) :
|
||||
QDialog(parent),
|
||||
fileNames(fileNames),
|
||||
m_amount(0),
|
||||
matchAllImages(false)
|
||||
{
|
||||
ui.setupUi(this);
|
||||
connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton *)), this, SLOT(buttonClicked(QAbstractButton *)));
|
||||
|
|
Loading…
Add table
Reference in a new issue