CentOS: Another attempt

This commit is contained in:
Markus Goetz 2017-02-08 11:14:31 +01:00
parent a184c6bec1
commit e7be4faac8
2 changed files with 3 additions and 2 deletions

View file

@ -38,7 +38,8 @@ namespace OCC {
GeneralSettings::GeneralSettings(QWidget *parent) :
QWidget(parent),
_ui(new Ui::GeneralSettings)
_ui(new Ui::GeneralSettings),
_currentlyLoading(false)
{
_ui->setupUi(this);

View file

@ -52,7 +52,7 @@ private:
Ui::GeneralSettings *_ui;
QPointer<IgnoreListEditor> _ignoreEditor;
QPointer<SyncLogDialog> _syncLogDialog;
bool _currentlyLoading = false;
bool _currentlyLoading;
};