Merge remote-tracking branch 'TanninOne/master' into issue/344

This commit is contained in:
Thomas Tanner
2015-12-05 10:33:09 +00:00
7 changed files with 25 additions and 25 deletions
+2 -1
View File
@@ -284,7 +284,7 @@ struct QList_to_python_list
bpy::list pyList;
try {
foreach (const T &item, list) {
for (const T &item : list) {
pyList.append(item);
}
} catch (const bpy::error_already_set&) {
@@ -683,6 +683,7 @@ BOOST_PYTHON_MODULE(mobase)
bpy::enum_<MOBase::IGameInfo::Type>("GameType")
.value("oblivion", MOBase::IGameInfo::TYPE_OBLIVION)
.value("fallout3", MOBase::IGameInfo::TYPE_FALLOUT3)
.value("fallout4", MOBase::IGameInfo::TYPE_FALLOUT4)
.value("falloutnv", MOBase::IGameInfo::TYPE_FALLOUTNV)
.value("skyrim", MOBase::IGameInfo::TYPE_SKYRIM)
;