mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Format code using clang-format
This commit is contained in:
@ -8,14 +8,14 @@
|
||||
class Folder : public LibraryItem
|
||||
{
|
||||
public:
|
||||
bool knownParent;
|
||||
bool knownId;
|
||||
|
||||
bool knownParent;
|
||||
bool knownId;
|
||||
|
||||
Folder();
|
||||
Folder(qulonglong folderId, qulonglong parentId,const QString & folderName, const QString & folderPath);
|
||||
Folder(const QString & folderName, const QString & folderPath);
|
||||
Folder(qulonglong folderId, qulonglong parentId, const QString &folderName, const QString &folderPath);
|
||||
Folder(const QString &folderName, const QString &folderPath);
|
||||
Folder(const Folder &folder);
|
||||
Folder &operator =(const Folder & other);
|
||||
Folder &operator=(const Folder &other);
|
||||
|
||||
inline void setId(qulonglong sid)
|
||||
{
|
||||
@ -68,7 +68,7 @@ public:
|
||||
return firstChildHash;
|
||||
}
|
||||
|
||||
inline void setFirstChildHash(const QString & v)
|
||||
inline void setFirstChildHash(const QString &v)
|
||||
{
|
||||
firstChildHash = v;
|
||||
}
|
||||
@ -78,7 +78,7 @@ public:
|
||||
return customImage;
|
||||
}
|
||||
|
||||
inline void setCustomImage(const QString & s)
|
||||
inline void setCustomImage(const QString &s)
|
||||
{
|
||||
customImage = s;
|
||||
}
|
||||
@ -90,7 +90,6 @@ private:
|
||||
qint32 numChildren; //-1 for unknown number of children
|
||||
QString firstChildHash; //empty for unknown first child
|
||||
QString customImage; //empty for none custom image
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user