Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2014-09-03 18:11:05 +0400
committerOlivier Goffart <ogoffart@woboq.com>2014-09-10 13:01:38 +0400
commit71408bab602010f55973b4b131969ce47f38ef59 (patch)
tree939f10b7c3771df210d3e070bbf0d86fe9b89cd0 /src/mirall/syncengine.h
parent9e015eb6545a40e25d9e534f0ae13fc267a63a8a (diff)
I forgot to rename one of the while list to the blacklist
Diffstat (limited to 'src/mirall/syncengine.h')
-rw-r--r--src/mirall/syncengine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mirall/syncengine.h b/src/mirall/syncengine.h
index d1720c240..9806cc6df 100644
--- a/src/mirall/syncengine.h
+++ b/src/mirall/syncengine.h
@@ -62,7 +62,7 @@ public:
Utility::StopWatch &stopWatch() { return _stopWatch; }
void setSelectiveSyncBlackList(const QStringList &list)
- { _selectiveSyncWhiteList = list; }
+ { _selectiveSyncBlackList = list; }
signals:
void csyncError( const QString& );
@@ -159,7 +159,7 @@ private:
// hash containing the permissions on the remote directory
QHash<QString, QByteArray> _remotePerms;
- QStringList _selectiveSyncWhiteList;
+ QStringList _selectiveSyncBlackList;
};
}