diff options
| author | Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com> | 2026-01-11 17:31:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-11 17:31:26 +0100 |
| commit | aa44561e86b6520ee0ab10a58db52b6fdd77d991 (patch) | |
| tree | 0437239c99bb71d08b74bd590aee7cd019a412d1 /src/modinfodialogfiletree.cpp | |
| parent | 717b5ac389ea15350d32f813a3f03d908de0ab06 (diff) | |
Change IOrganizer::profile return type to a shared_ptr (#2322)
Diffstat (limited to 'src/modinfodialogfiletree.cpp')
| -rw-r--r-- | src/modinfodialogfiletree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modinfodialogfiletree.cpp b/src/modinfodialogfiletree.cpp index 140b813d..18220854 100644 --- a/src/modinfodialogfiletree.cpp +++ b/src/modinfodialogfiletree.cpp @@ -482,7 +482,7 @@ void FileTreeTab::onContextMenu(const QPoint& pos) bool enableRunHooked = false; if (enableRun || enableOpen) { - if (auto* p = core().currentProfile()) { + if (auto p = core().currentProfile()) { if (mod().canBeEnabled()) { const auto index = ModInfo::getIndex(mod().name()); if (index == UINT_MAX) { |
