SelectiveSyncDialog::estimatedSize: return qint64 because -1 in case of error

This commit is contained in:
Olivier Goffart 2015-01-15 13:07:16 +01:00
parent 264471af43
commit 2b8b204cfc
2 changed files with 2 additions and 2 deletions

View file

@ -363,7 +363,7 @@ QStringList SelectiveSyncDialog::createBlackList() const
return _treeView->createBlackList();
}
quint64 SelectiveSyncDialog::estimatedSize()
qint64 SelectiveSyncDialog::estimatedSize()
{
return _treeView->estimatedSize();
}

View file

@ -72,7 +72,7 @@ public:
QStringList createBlackList() const;
// Estimate the size of the total of sync'ed files from the server
quint64 estimatedSize();
qint64 estimatedSize();
private: