DivelogsDeWebServices::multipart - initializes member

Non-static class member multipart is not initialized in the constructor

Signed-off-by: Marcos CARDINOT <mcardinot@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Marcos CARDINOT 2015-03-25 02:41:38 -03:00 committed by Dirk Hohndel
parent dc32d447c3
commit 0bf61844e7

View file

@ -680,7 +680,9 @@ void DivelogsDeWebServices::uploadDives(QIODevice *dldContent)
}
}
DivelogsDeWebServices::DivelogsDeWebServices(QWidget *parent, Qt::WindowFlags f) : WebServices(parent, f), uploadMode(false)
DivelogsDeWebServices::DivelogsDeWebServices(QWidget *parent, Qt::WindowFlags f) : WebServices(parent, f),
multipart(NULL),
uploadMode(false)
{
QSettings s;
ui.userID->setText(s.value("divelogde_user").toString());