diff options
| author | Thomas Tanner <trtanner@btinternet.com> | 2015-11-25 19:31:05 +0000 |
|---|---|---|
| committer | Thomas Tanner <trtanner@btinternet.com> | 2015-11-25 19:31:05 +0000 |
| commit | 38c5899fef2f21561a00bd5b1df3eff8577ec986 (patch) | |
| tree | fddb56b11b86e450ea0a07de554ccde8dc7417e9 /src/selfupdater.h | |
| parent | b9b12ca765d1703ac2e3852746e7acc3a20949a9 (diff) | |
Replace GameInfo::getNexusInfoUrl with IPluginGame::getNexusManagementUrl
also added getNexusDisplayUrl for the other variant of getNexusPage
Removed skyrim static versions
note that Nexusinterface is now passed a game plugin rather than a URL and a game ID if you want to override the current game
Diffstat (limited to 'src/selfupdater.h')
| -rw-r--r-- | src/selfupdater.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/selfupdater.h b/src/selfupdater.h index 143b05cb..4fdc3d7d 100644 --- a/src/selfupdater.h +++ b/src/selfupdater.h @@ -29,6 +29,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <QFile>
#include <QProgressDialog>
+namespace MOBase { class IPluginGame; }
class NexusInterface;
@@ -83,6 +84,9 @@ public: **/
MOBase::VersionInfo getVersion() const { return m_MOVersion; }
+ /** Set the game check for updates */
+ void setNexusDownload(MOBase::IPluginGame const *game);
+
public slots:
/**
@@ -146,6 +150,7 @@ private: Archive *m_CurrentArchive;
+ MOBase::IPluginGame const *m_NexusDownload;
};
|
