mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
SelectiveSyncDialog::estimatedSize: return qint64 because -1 in case of error
This commit is contained in:
parent
264471af43
commit
2b8b204cfc
2 changed files with 2 additions and 2 deletions
|
@ -363,7 +363,7 @@ QStringList SelectiveSyncDialog::createBlackList() const
|
||||||
return _treeView->createBlackList();
|
return _treeView->createBlackList();
|
||||||
}
|
}
|
||||||
|
|
||||||
quint64 SelectiveSyncDialog::estimatedSize()
|
qint64 SelectiveSyncDialog::estimatedSize()
|
||||||
{
|
{
|
||||||
return _treeView->estimatedSize();
|
return _treeView->estimatedSize();
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,7 +72,7 @@ public:
|
||||||
QStringList createBlackList() const;
|
QStringList createBlackList() const;
|
||||||
|
|
||||||
// Estimate the size of the total of sync'ed files from the server
|
// Estimate the size of the total of sync'ed files from the server
|
||||||
quint64 estimatedSize();
|
qint64 estimatedSize();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue