From b7edde6fa0faa6f7bc692ac691d6f16ef7cd0f90 Mon Sep 17 00:00:00 2001 From: Tannin Date: Sun, 14 Dec 2014 16:30:23 +0100 Subject: [PATCH] custom installers can now set the installation file (and the ncc installer now does) --- src/runner/uibasewrappers.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runner/uibasewrappers.h b/src/runner/uibasewrappers.h index 962ba64..7c035df 100644 --- a/src/runner/uibasewrappers.h +++ b/src/runner/uibasewrappers.h @@ -268,6 +268,7 @@ struct IModInterfaceWrapper: MOBase::IModInterface, boost::python::wrapperget_override("setNewestVersion")(version); } virtual void setIsEndorsed(bool endorsed) { this->get_override("setIsEndorsed")(endorsed); } virtual void setNexusID(int nexusID) { this->get_override("setNexusID")(nexusID); } + virtual void setInstallationFile(const QString &fileName) { this->get_override("setInstallationFile")(fileName); } virtual void addNexusCategory(int categoryID) { this->get_override("addNexusCategory")(categoryID); } virtual bool setName(const QString &name) { return this->get_override("setName")(name); } virtual bool remove() { return this->get_override("remove")(); }