moved initialization to initializer list in HomePage

This commit is contained in:
csoler 2018-11-02 20:26:49 +01:00
parent 4aedfddb9f
commit af86b29f2b
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -48,10 +48,9 @@
HomePage::HomePage(QWidget *parent) :
MainPage(parent),
ui(new Ui::HomePage)
ui(new Ui::HomePage),
mIncludeAllIPs(false)
{
mIncludeAllIPs = false;
ui->setupUi(this);
updateOwnCert();