Remove most instances of GameInfo::getname, and transfer getDLCPlugins to the plugingame interface

Also removed startDownloadNextFile as it doesn't appear to be used anywhere
This commit is contained in:
Thomas Tanner
2015-11-23 18:34:04 +00:00
parent 55e9c9c7b6
commit fc8f6c77bc
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -749,7 +749,8 @@ BOOST_PYTHON_MODULE(mobase)
bpy::class_<IDownloadManagerWrapper, boost::noncopyable>("IDownloadManager")
.def("startDownloadURLs", bpy::pure_virtual(&IDownloadManager::startDownloadURLs))
.def("startDownloadNexusFile", bpy::pure_virtual(&IDownloadManager::startDownloadNexusFile))
//not used?
//.def("startDownloadNexusFile", bpy::pure_virtual(&IDownloadManager::startDownloadNexusFile))
.def("downloadPath", bpy::pure_virtual(&IDownloadManager::downloadPath))
;
@@ -856,6 +857,7 @@ BOOST_PYTHON_MODULE(mobase)
.def("getBinaryName", bpy::pure_virtual(&MOBase::IPluginGame::getBinaryName))
.def("getNexusName", bpy::pure_virtual(&MOBase::IPluginGame::getNexusName))
.def("getIniFiles", bpy::pure_virtual(&MOBase::IPluginGame::getIniFiles))
.def("getDLCPlugins", bpy::pure_virtual(&MOBase::IPluginGame::getDLCPlugins))
//Plugin interface.
.def("init", bpy::pure_virtual(&MOBase::IPluginGame::init))