diff --git a/es-app/src/FileData.h b/es-app/src/FileData.h index 30ccb4f4d..c21b03635 100644 --- a/es-app/src/FileData.h +++ b/es-app/src/FileData.h @@ -96,6 +96,8 @@ public: const bool getDeletionFlag() const { return mDeletionFlag; } void setDeletionFlag(bool setting) { mDeletionFlag = setting; } + const bool isPlaceHolder() const { return mType == PLACEHOLDER; } + void refreshMetadata() { metadata = mSourceFileData->metadata; } const std::vector& getChildrenListToDisplay(); std::vector getFilesRecursive(unsigned int typeMask, @@ -108,10 +110,6 @@ public: void addChild(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(); } const bool isArcadeAsset() const; const bool isArcadeGame() const;