summaryrefslogtreecommitdiff
path: root/src/downloadmanager.h
diff options
context:
space:
mode:
authorThomas Tanner <trtanner@btinternet.com>2015-11-24 06:58:29 +0000
committerThomas Tanner <trtanner@btinternet.com>2015-11-24 06:58:29 +0000
commit37c3bea7dd5a562a97c00b740103cc2868b3013b (patch)
treec4fce29e8aaba21307456dd30b9cbf81580e6c3e /src/downloadmanager.h
parent3659284ab6bdbf0845cf846600a26db688584d6f (diff)
Removes all uses of GameInfo::getShortName, replaced by IPluginGame::getNexustName
Diffstat (limited to 'src/downloadmanager.h')
-rw-r--r--src/downloadmanager.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/downloadmanager.h b/src/downloadmanager.h
index f13cc65d..faa4267e 100644
--- a/src/downloadmanager.h
+++ b/src/downloadmanager.h
@@ -35,6 +35,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <QFileSystemWatcher>
#include <QSettings>
+namespace MOBase { class IPluginGame; }
class NexusInterface;
@@ -416,6 +417,8 @@ public slots:
void nxmRequestFailed(int modID, int fileID, QVariant userData, int requestID, const QString &errorString);
+ void managedGameChanged(MOBase::IPluginGame *gamePlugin);
+
private slots:
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
@@ -503,6 +506,7 @@ private:
QRegExp m_DateExpression;
+ MOBase::IPluginGame *m_ManagedGame;
};