CentOS: Another attempt

Esse commit está contido em:
Markus Goetz
2017-02-08 11:14:31 +01:00
commit e7be4faac8
2 arquivos alterados com 3 adições e 2 exclusões
+2 -1
Ver Arquivo
@@ -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);
+1 -1
Ver Arquivo
@@ -52,7 +52,7 @@ private:
Ui::GeneralSettings *_ui;
QPointer<IgnoreListEditor> _ignoreEditor;
QPointer<SyncLogDialog> _syncLogDialog;
bool _currentlyLoading = false;
bool _currentlyLoading;
};