diff options
| author | Tannin <devnull@localhost> | 2014-12-09 18:34:09 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-12-09 18:34:09 +0100 |
| commit | 479fdb3dcd47fb8d951dc9aa9f558878d880ca04 (patch) | |
| tree | 1b6b5a7e4dccdaee80cbdaae643d552f02a8e44f /src/profile.cpp | |
| parent | acf35da699f2bb01900552323cc1983b7f065422 (diff) | |
removed use of ModInfo::internalName
Diffstat (limited to 'src/profile.cpp')
| -rw-r--r-- | src/profile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/profile.cpp b/src/profile.cpp index 12992291..fda61c4d 100644 --- a/src/profile.cpp +++ b/src/profile.cpp @@ -388,7 +388,7 @@ std::vector<std::tuple<QString, QString, int> > Profile::getActiveMods() iter != m_ModIndexByPriority.end(); ++iter) { if ((*iter != UINT_MAX) && m_ModStatus[*iter].m_Enabled) { ModInfo::Ptr modInfo = ModInfo::getByIndex(*iter); - result.push_back(std::make_tuple(modInfo->internalName(), modInfo->absolutePath(), m_ModStatus[*iter].m_Priority)); + result.push_back(std::make_tuple(modInfo->name(), modInfo->absolutePath(), m_ModStatus[*iter].m_Priority)); } } |
