mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
Ooops, added an extra } to last commit. Now fixed.
This commit is contained in:
parent
e7c6882aea
commit
0b75747aed
1 changed files with 3 additions and 1 deletions
|
@ -58,8 +58,9 @@ public:
|
|||
qlonglong size;
|
||||
qlonglong sizeAvailable;
|
||||
QString type;
|
||||
bool locked;
|
||||
FileInfo(QString name, QString last, qlonglong fileSize,
|
||||
qlonglong available, QString fileType ) {
|
||||
qlonglong available, QString fileType, bool lock = false ) {
|
||||
fileName = name;
|
||||
lastModified = last;
|
||||
size = fileSize;
|
||||
|
@ -69,6 +70,7 @@ public:
|
|||
} else {
|
||||
type = fileType;
|
||||
}
|
||||
locked = lock;
|
||||
};
|
||||
QString toString()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue