diff options
author | Mai <mathew1800@gmail.com> | 2022-11-11 00:42:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 00:42:40 +0000 |
commit | 83eb9cf7dabc7685215b423ffae9a650fa9a3f50 (patch) | |
tree | 9e8db8ab31d74b8874e203caed4b676d20a997b9 /src/yuzu/main.h | |
parent | 0e84fd95e2830c0c951c68093bdde5c76e6c489f (diff) | |
parent | a5d87032350c3d902396da4914dd742ab5c39efe (diff) |
Merge pull request #9180 from Docteh/remove_stuff
UI: split up strings relating to content removal
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 150ada84c..b73f550dd 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -324,9 +324,10 @@ private slots: void OnMouseActivity(); private: - void RemoveBaseContent(u64 program_id, const QString& entry_type); - void RemoveUpdateContent(u64 program_id, const QString& entry_type); - void RemoveAddOnContent(u64 program_id, const QString& entry_type); + QString GetGameListErrorRemoving(InstalledEntryType type) const; + void RemoveBaseContent(u64 program_id, InstalledEntryType type); + void RemoveUpdateContent(u64 program_id, InstalledEntryType type); + void RemoveAddOnContent(u64 program_id, InstalledEntryType type); void RemoveTransferableShaderCache(u64 program_id, GameListRemoveTarget target); void RemoveAllTransferableShaderCaches(u64 program_id); void RemoveCustomConfiguration(u64 program_id, const std::string& game_path); |