Ooops, added an extra } to last commit. Now fixed.

This commit is contained in:
Juan Carlos Cornejo 2011-12-18 16:27:49 -05:00 committed by Klaas Freitag
parent e7c6882aea
commit 0b75747aed

View file

@ -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()
{