mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-30 12:05:39 +00:00
Fixed an issue where collection changes were not applied correctly.
This commit is contained in:
parent
3bbc761c8f
commit
110911df2e
|
@ -96,6 +96,8 @@ public:
|
||||||
|
|
||||||
const bool getDeletionFlag() const { return mDeletionFlag; }
|
const bool getDeletionFlag() const { return mDeletionFlag; }
|
||||||
void setDeletionFlag(bool setting) { mDeletionFlag = setting; }
|
void setDeletionFlag(bool setting) { mDeletionFlag = setting; }
|
||||||
|
const bool isPlaceHolder() const { return mType == PLACEHOLDER; }
|
||||||
|
void refreshMetadata() { metadata = mSourceFileData->metadata; }
|
||||||
|
|
||||||
const std::vector<FileData*>& getChildrenListToDisplay();
|
const std::vector<FileData*>& getChildrenListToDisplay();
|
||||||
std::vector<FileData*> getFilesRecursive(unsigned int typeMask,
|
std::vector<FileData*> getFilesRecursive(unsigned int typeMask,
|
||||||
|
@ -108,10 +110,6 @@ public:
|
||||||
void addChild(FileData* file); // Error if mType != FOLDER
|
void addChild(FileData* file); // Error if mType != FOLDER
|
||||||
void removeChild(FileData* file); // Error if mType != FOLDER
|
void removeChild(FileData* file); // Error if mType != FOLDER
|
||||||
|
|
||||||
const bool isPlaceHolder() const { return mType == PLACEHOLDER; }
|
|
||||||
|
|
||||||
virtual void refreshMetadata() { return; }
|
|
||||||
|
|
||||||
virtual std::string getKey() { return getFileName(); }
|
virtual std::string getKey() { return getFileName(); }
|
||||||
const bool isArcadeAsset() const;
|
const bool isArcadeAsset() const;
|
||||||
const bool isArcadeGame() const;
|
const bool isArcadeGame() const;
|
||||||
|
|
Loading…
Reference in a new issue