CentOS: Another fix for old compiler version (2)

This commit is contained in:
Markus Goetz 2017-02-07 19:22:04 +01:00
parent 6c6961e4d9
commit 6a4ae63f14
2 changed files with 2 additions and 2 deletions

View file

@ -244,7 +244,7 @@ int get_errno_from_http_errcode( int err, const QString & reason ) {
DiscoverySingleDirectoryJob::DiscoverySingleDirectoryJob(const AccountPtr &account, const QString &path, QObject *parent)
: QObject(parent), _subPath(path), _account(account), _ignoredFirst(false), _isRootPath(false)
: QObject(parent), _subPath(path), _account(account), _ignoredFirst(false), _isRootPath(false), _isExternalStorage(false)
{
}

View file

@ -118,7 +118,7 @@ private:
// Set to true if this is the root path and we need to check the data-fingerprint
bool _isRootPath;
// If this directory is an external storage (The first item has 'M' in its permission)
bool _isExternalStorage = false;
bool _isExternalStorage;
QPointer<LsColJob> _lsColJob;
public: