summaryrefslogtreecommitdiff
path: root/src/modinfo.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2014-12-09 18:34:09 +0100
committerTannin <devnull@localhost>2014-12-09 18:34:09 +0100
commit479fdb3dcd47fb8d951dc9aa9f558878d880ca04 (patch)
tree1b6b5a7e4dccdaee80cbdaae643d552f02a8e44f /src/modinfo.cpp
parentacf35da699f2bb01900552323cc1983b7f065422 (diff)
removed use of ModInfo::internalName
Diffstat (limited to 'src/modinfo.cpp')
-rw-r--r--src/modinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modinfo.cpp b/src/modinfo.cpp
index 28a906fa..b31d3cda 100644
--- a/src/modinfo.cpp
+++ b/src/modinfo.cpp
@@ -232,7 +232,7 @@ void ModInfo::updateIndices()
QRegExp backupRegEx(".*backup[0-9]*$");
for (unsigned int i = 0; i < s_Collection.size(); ++i) {
- QString modName = s_Collection[i]->internalName();
+ QString modName = s_Collection[i]->name();
int modID = s_Collection[i]->getNexusID();
s_ModsByName[modName] = i;
s_ModsByModID[modID].push_back(i);