mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-26 07:11:08 -04:00
moved initialization to initializer list in HomePage
This commit is contained in:
parent
4aedfddb9f
commit
af86b29f2b
1 changed files with 2 additions and 3 deletions
|
@ -48,10 +48,9 @@
|
||||||
|
|
||||||
HomePage::HomePage(QWidget *parent) :
|
HomePage::HomePage(QWidget *parent) :
|
||||||
MainPage(parent),
|
MainPage(parent),
|
||||||
ui(new Ui::HomePage)
|
ui(new Ui::HomePage),
|
||||||
|
mIncludeAllIPs(false)
|
||||||
{
|
{
|
||||||
mIncludeAllIPs = false;
|
|
||||||
|
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
updateOwnCert();
|
updateOwnCert();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue