diff options
| author | bunnei <bunneidev@gmail.com> | 2021-06-02 22:11:35 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-02 22:11:35 -0700 |
| commit | 5a6d002bf046d0cd3211848ce3288ba01adfbd90 (patch) | |
| tree | 0b3eb6faed20d84d8e5a803ce65f0e27f6ca9856 /src/yuzu/main.h | |
| parent | 395cc0c32f5ce15cc324c1e392b7bb7eff24d30e (diff) | |
| parent | c41451af75520a19b050347bb9c267b69773ff0a (diff) | |
Merge pull request #6404 from lat9nq/revert_views
yuzu qt: Revert some usages of string_view
Diffstat (limited to 'src/yuzu/main.h')
| -rw-r--r-- | src/yuzu/main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 135681d41..490b6889f 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -237,7 +237,7 @@ private slots: void OnTransferableShaderCacheOpenFile(u64 program_id); void OnGameListRemoveInstalledEntry(u64 program_id, InstalledEntryType type); void OnGameListRemoveFile(u64 program_id, GameListRemoveTarget target, - std::string_view game_path); + const std::string& game_path); void OnGameListDumpRomFS(u64 program_id, const std::string& game_path); void OnGameListCopyTID(u64 program_id); void OnGameListNavigateToGamedbEntry(u64 program_id, @@ -276,7 +276,7 @@ private: void RemoveUpdateContent(u64 program_id, const QString& entry_type); void RemoveAddOnContent(u64 program_id, const QString& entry_type); void RemoveTransferableShaderCache(u64 program_id); - void RemoveCustomConfiguration(u64 program_id, std::string_view game_path); + void RemoveCustomConfiguration(u64 program_id, const std::string& game_path); std::optional<u64> SelectRomFSDumpTarget(const FileSys::ContentProvider&, u64 program_id); InstallResult InstallNSPXCI(const QString& filename); InstallResult InstallNCA(const QString& filename); |
